Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

FisherTransform - able to reference the bars that FisherTransform Indicator produces

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    FisherTransform - able to reference the bars that FisherTransform Indicator produces

    As you may know the FisherTransform Indicator generates bars and the resulting peak swings are great for identifying price reversals. However, the indicator itself does not produce a plot or bar reference that I can use or easily find to insert into a strategy. I.e., the strategy wizard does not make any reference to a bar or plot. Looking at the manual code it is also unclear exactly what is producing the bar plots for the indicator.

    For example, one strategy of a long signal would be a "V" formation developed during 4 bars.:

    // Condition set 1
    if (Rising(FisherTransform(10)) == true
    && Low[1] < Low[2]
    && Low[2] < Low[3])
    // EnterLong

    And the short formation would look like the carrot (^) symbol during 4 bars:

    // Condition set 2
    if (Falling(FisherTransform(10)) == true
    && High[1] > High[2]
    && High[2] > High[3])
    //EnterShort

    Please note that both these conditions above refer to the candlestick (or OHLC bar), not the bar produced by the FisherTransform Indicator. Therefore, I need to be able to reference the bars the FisherTransform produces. How do I do that???


    Additionally, as a related problem to incorporation of the Indicator into a strategy:

    If I had the FisherTransform Indicator in a sub panel and not using the price of the instrument (price markers - false) it would use a 3, 2, 1, 0, -1, -2, -3 price scale. However, this indicator doesn't plot anything I can use that would cross over/under 0 or -1.5, etc.

    So, I'm asking again, how to a reference a bar, plot, line, etc in my strategy with this indicator????

    As solution to this problem will have a great many people who think this is a terrific indicator but can't use it in a strategy.

    YOUR ASSISTANCE IS VERY MUCH APPRECIATED!!!
    Attached Files

    #2
    You access the FisherTransform plot like you do for any other indicator:

    FisherTransform(Period)[index].

    So the 10 period FisherTransform value 2 bars ago, for example, is FisherTransform(10)[2] etc.,

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    67 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    149 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    162 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    99 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    286 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X