Current using of technical indicators (technical.js) not very easy for creating new strategies, because many of parameters are hardcoded inside of indicators, and visual representation of indicators are statically hardcoded in strategy.js. On each strategy loop, user see table like below.
But better if this table allocate indicators dynamically based of using them in particular strategy. For example if user trades MACD strategy, he is not insteresting in Slow Stochastic indicators and back.
So,
if MACD strategy there should be CLOSE, ADX, MACD0, MACD, OBV/MA
If Slow Stochastic 14,3 - CLOSE SS.K SS.D OBV/MA
If Buy And Hold - CLOSE SMA50 SMA100 SMA200
etc.
Current using of technical indicators (technical.js) not very easy for creating new strategies, because many of parameters are hardcoded inside of indicators, and visual representation of indicators are statically hardcoded in strategy.js. On each strategy loop, user see table like below. But better if this table allocate indicators dynamically based of using them in particular strategy. For example if user trades MACD strategy, he is not insteresting in Slow Stochastic indicators and back. So, if MACD strategy there should be CLOSE, ADX, MACD0, MACD, OBV/MA If Slow Stochastic 14,3 - CLOSE SS.K SS.D OBV/MA If Buy And Hold - CLOSE SMA50 SMA100 SMA200 etc.