Last seen: Nov 3, 2021
Hi All, Upon checking on this issue, the problem was caused by division of Zero in Set TSI = (EMA_13/aEMA_13) * 100. Initial value of aEMA_13 is...
Thanks for the report we will on check this.
To automate the database update, we fixed VAI to reference only a single database.
VAI has the following offline data: EOD Data (Daily) from 2017 to current (2021) EOD Data (Weekly) from 2006 to current (2021) EOD Data (Monthly...
Sorry for confusion. If you just want to buy it in next day using Open price, just code your script as is (no special condition) but in backtesting, m...
#Moving Average Convergence/Divergence (MACD)Set MACD_Line = MACD(12, 26, 9, Exponential)Set MACD_Signal = MACDSIGNAL(12, 26, 9, Exponential)Set HISTO...
set Buy = Your Condition on Buy//Ref(Buy,1) value of Buy 1 day agoset BuyPrice = if(Ref(Buy,1),Open,0) To store your buy price you can use the b...
Currently you can run backtesting of individual stocks manually. We will take note on this.
Use blockref to store the close price when your buy condition hit. //Store the Buy Amount -> Blockref(value if condition1=True,value if condition...
REF can be used to reference previous bars. 5 can be used for weekly since we have only 5 trading days in a a week and 20 days for a month. Close >...