Technical Indicator Backtest
1993-2017 SPY Index daily return
@kaggle.zhijinzhai_technical_indicator_backtest
1993-2017 SPY Index daily return
@kaggle.zhijinzhai_technical_indicator_backtest
Using TA-Lib : Technical Analysis Library. Backtest on the SPY Index data, using support and resistance indicators or any other indicator.
Data contains daily SPY Index:
Date Open High Low Close Adj Close Volume
Support for Resistance: Technical Analysis
WIKI link: https://en.wikipedia.org/wiki/Support_and_resistance
Do your best for the backtest and technical indicator implementation
CREATE TABLE spy_index (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);Anyone who has the link will be able to view this.