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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    672 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    379 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    111 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    575 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    582 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X