Comment on Code your Technical Analysis strategy
Ricky,
1/2. your entry strategy: SOPK (8, 3, 4, SIMPLE) > SOPD (8, 3, 4, SIMPLE)
3. your entry strategy: EMA (CLOSE, 5) > EMA (CLOSE , 13) AND REF (EMA (CLOSE, 5), 1) < REF (EMA (CLOSE, 13), 1)
Do note that algoZ doesn’t support multiple time frames on the same strategy. For example, you can have a strategy different one running on a 5 min chart and another on 30min chart. You cannot have a strategy which requires both 5 min and 30 min chart.
Again Stop loss can be set as % using the alert price window.
Exit strategy: SOPK (8, 3, 4, SIMPLE) < SOPD (8, 3, 4, SIMPLE) AND REF(SOPK (8, 3, 4, SIMPLE), 1) > REF(SOPD (8, 3, 4, SIMPLE), 1)
Again, cannot split the quantity for exiting, when the above condition gets satisfied, the order will be for the complete quantity.