BAJAJ-AUTO 4267265
M&M 519937
TATAMTRDVR 4343041
WIPRO 969473
YESBANK 3050241
ZEEL 975873
have data only 2015 onwards.
6-7m seems a bit short, is there any plan to add more data? say…
crudeoilm = open('crudeoilm.csv', 'w')
-You're opening the file in write mode, it will overwrite existing contents every time. Switch to append mode "a". Seems to be fine otherwise.
You mean the OHLC tabular form that I will prepare, I let it be…
1. Not necessarily previous day. It gives you data until the most recently completed candle even during the current day.
2. Yes, you don't need Excel though. Keep it in memory for fast access, maybe backup to CSV at regular intervals. Excel is unnec…
@AnkitDoshi : If you are using Python, you would want to use some kind of scheduler to fetch the latest candle data every 5 minutes ( or whatever is your time frame), generate your trading signals and send orders as necessary. In between, use the we…