Getting the data from indicator MQL5 with Django Rest framework
Django
Django REST framework (DRF)
Some reasons you might want to use REST framework:
The Web browsable API is a huge usability win for your developers.
Authentication policies including packages for OAuth1a and OAuth2.
Serialization that supports both ORM and non-ORM data sources.
Customizable all the way down - just use regular function-based views if you don't need the more powerful features.
Extensive documentation, and great community support.
Used and trusted by internationally recognised companies including Mozilla, Red Hat, Heroku, and Eventbrite.
Postman
Postman Galaxy is a global, virtual Postman user conference. From February 2 to 4, 2021, we'll gather the world's most enthusiastic API users and developers for a rocketload of action-packed online event activities and content about all things API.
MetaTrader
Install
source myenv/bin/activate
pip3 install django gunicorn
django-admin startproject core .
manage.py startapp api
pip install djangorestframework
Postman Raw jason
{"time_frame":"D1","title": "Fractal_upper","symbol_name": "EURUSD", "type":"upper","time_request":"2020-12-23 00:00","price":12340.0},
{"time_frame":"D1","title": "Fractal_upper","symbol_name": "EURUSD", "type":"upper","time_request":"2020-12-14 00:00","price":12690.0}
]
Documents