Bill Chan
Bill Chan
Use 1M interval stock data to quickly calculate other time interval-based stock data on demand. Potential useful resources https://stackoverflow.com/questions/62373692/how-do-you-convert-1-minute-open-high-low-close-data-to-another-timeframefx-5
Add support for using Seaborn / Matplotlib to plot the trading result.
**Is your feature request related to a problem? Please describe.** No **Describe the solution you'd like** So currently, the strategy might lead to incorrect buy decisions for some stocks with...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...
**Is your feature request related to a problem? Please describe.** No **Describe the solution you'd like** When we have a buy/sell signal, send an Email / SMS/ WhatsApp Message to...
ADX & RSI Strategy based on the following specification ADXdays=Optimize("ADXdays",10,5,25,5); ADXlimit=Optimize("ADXlimit",25,10,50,5); RSI_threshold = Optimize("RSILimit",20,5,100,5); Buy= RSI(2) < RSI_threshold AND ADX(ADXdays)>ADXlimit ; buyPrice=Close; Sell= C>Ref(H,-1);
Feel free to leave your thoughts!! Any name suggestion is welcomed
When converting 1M stock data to any time interval greater than 60M, it creates discrepancy between the generated file & actual file due to the non-trading hours. For instance, for...