Skip to main content

TTM Hourly Rolling Pivots Indicator Clone for Amibroker (AFL)

kaiji over 16 years ago Amibroker (AFL)

  • Rating:
    4 / 5 (Votes 5)
  • Tags:
    amibroker, pivots, intraday, ttm

This is a clone of the original TTM indicator for Amibroker.

TTM Hourly Rolling Pivots are great for Sideways Chop
TTM Hourly Rolling Pivots Indicator updates new pivots every hour

You cannot view the code for the following reasons:
  • You must be a member and have contributed at least 1 indicator

3 comments

1. sat07sh
almost 13 years ago
uptrend=PDI()>MDI()AND Signal()<MACD();
downtrend=MDI()>PDI()AND Signal()>MACD();


Plot( 2, /* defines the height of the ribbon in percent of pane width*/"ribbon",
IIf( uptrend, colorGreen, IIf( downtrend, colorRed, 0 )), /* choose color */styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );
almost 13 years ago

Sat07sh,

Please copy paste wisely :)

uptrend=PDI()>MDI()AND Signal()<MACD();
downtrend=PDI()<MDI() AND Signal()>MACD();

Plot( 2, /* defines the height of the ribbon in percent of pane width*/"ribbon",
IIf( uptrend, colorGreen, IIf( downtrend, colorRed, 0 )), /* choose color */styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );

Leave Comment

Please login here to leave a comment.