I am very new to this.
backtrader have a addwriter can write down some data,
cerebro.addwriter(bt.WriterFile, csv=True, out='outputfiles3\{}cerebro.csv'.format(ticker))
but buy and sell price always not match to the execute price.
so alternatively:
i did cerebro.addanalyzer(WritingAnalyzer)
before cerebro.run()
so I am trying to build the csv file with 'datetime','open','close','cash','value','position size'
but I don't know how to access those data. I can only point at current day close price with self.data[0]
I don't know how to do it right. I hope someone might able to give me some directions.
import backtrader as bt
from backtrader import Analyzer
import csv
class WritingAnalyzer(Analyzer):
def __init__(self):
def create_analysis(self):
self.counter = 0
print(self.counter)
with open('demo1.csv',mode='w') as csv_file:
fieldnames=['datetime','open','close','cash','value','position size']
writer = csv.DictWriter(csv_file, fieldnames=fieldnames)
writer.writeheader()
def next(self):
self.counter += 1
print('close price:',self.data[0], "counter:",self.counter,)
# the following line suppose to write into csv file but i dont know how to get most of the data.
bt.writer.writerow({'datetime': '??', 'open': '??', 'close': self.data[0],'cash':'??','value':'??','position size':'??'})
def stop(self):
print("SSSSSSSSSSSSSTTTTTTOOOOOOOOOOOOPPPPPPPPPP")
self.rets._close()
You need to handle your analyzer a bit differently. You can literally grab data at every bar and then have it available to you at the end.
Create a new analyzer, in my case I made:
In your analyzer in start you will create a new list.
Then in next you will add a list of data for each bar. I use a try statement just in case there are any data problems, but it's probably not necessary.
Strategy
is included as as subclass and you can use its methods by callingself.strategy.getvalue()
as an example.Finally create a
get_analysis
method that you can use to get your results at the end.Add your analyzer to before running cerebro. You can name it whatever you want, we'll need the name to call the results.
Make sure you provide a variable for the results of the cerebro.run() method so you can collect the results of the backtest.
Finally, get the data out of strat and do as you wish with it. In this case I'm creating a dataframe and printing.
And the printout looks like:
The whole code looks like this: