Custom Indicator Entry Problem
-
I am new to fxdreema; plz bare with me. I am using custom indicator -> AMA_optimized. For every move forward in the market a point is placed either blue or red for direction - I am looking to enter on the third point of the indicator for both sides(uptrend/downtrend). I have tried entry on candle ID '3' not getting the result and also 'AMA_Trend_Type' '3' not working also. How can I entry on the third point?


-
@michaelsernst Is hard to say without knowing what the indicator does with each buffer, start by putting the indicator buffers into a comment block to verify what each is doing is likely you will need a block like indicator appear/visible, create a separate tree for buys & sells, you can share spread but I would put at top so each condition is controlling buy/sell independently.
-
AMA_Trend_Type is nonzero: The difference between the current value of AMA (AMA[0]) and the value of AMA on the preceding bar (AMA[1]) is measured.
deltaAMA=AMA[0]-AMA[1]. The trend detection sensitivity is set in points as dK*Point.
If deltaAMA>dK*Point, then this is the uptrend, a blue point will be put onto the AMA line (as shown in the figure below).
If deltaAMA<dK*Point, then this is the downtrend, a red point will be put onto the AMA line.
AMA_Trend_Type is equal to zero: The array of AMA values on the latest PeroidAMA bars is taken and standard deviation StdAMA is calculated.
The trend detection sensitivity is set in standard deviations as dK*StdAMA.
If deltaAMA>dKStdAMA, then this is the uptrend, a blue point will be put onto the AMA line.
If deltaAMA<dKStdAMA, then this is the downtrend, a red point will be put onto the AMA line -
@michaelsernst That is really good information on how the indicator works, It doesn't say what it puts into each buffer, this is what FX works from. If you put the indicator here I will have a look.
-
-
@michaelsernst In HERE is how I tested this indicator, unfortunatly there seems to be no way of FX using it.
