Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Emerson Pedroso committed Feb 24, 2021
1 parent f9de712 commit 2f73ae5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions test/MultipleDataframe.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from ejtraderMT import Metatrader


api = Metatrader()

symbol = "EURUSD"
symbols = [symbol,"GBPUSD","AUDUSD"]
timeframe = "M1"
fromDate = "01/01/2021"
toDate = "01/02/2021"

data = api.historyDataFrame(symbol,symbols,timeframe,fromDate,toDate)

api.

print(data)

0 comments on commit 2f73ae5

Please sign in to comment.