Skip to content

javadbayani/DRF-metatrader

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DRF-metatrader

Getting the data from indicator MQL5 with Django Rest framework

Django
Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writing your app without needing to reinvent the wheel. It’s free and open source.

Django REST framework (DRF)
Django REST framework is a powerful and flexible toolkit for building Web APIs.

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: The Global Virtual API Conference
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
MetaTrader 5 is an institutional multi-asset platform offering outstanding trading possibilities and technical analysis tools, as well as enabling the use of automated trading systems (trading robots) and copy trading. MetaTrader 5 is an all-in-one platform for trading Forex, Stocks and Futures.

Install
virtualenv myenv
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


About

Getting the data from indicator MQL5 with Django Rest framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • MQL5 54.8%
  • Python 45.2%