Skip to main content

Start Green After 3 Bars Red for Amibroker (AFL)

htm9171 over 15 years ago Amibroker (AFL)

  • Rating:
    3 / 5 (Votes 3)
  • Tags:
    amibroker, exploration

start green after 3 bars red and rsi < 50

Indicator / Formula

Copy & Paste Friendly
// hassan start green after 3 bars red
AddTextColumn( FullName(), "Name");
AddColumn( Close, "Close" );
AddColumn( Volume, "Volume" );

Buy = O >Ref( O, -1 ) AND C>Ref( C, -1)  AND Ref( C, -1 )>Ref( C, -2 ) AND   RSI( 8 )<50;

Filter = O >Ref( O, -1 ) AND C>Ref( C, -1)  AND Ref( C, -1 )>Ref( C, -2 ) AND   RSI( 8 )<50;

1 comments

Leave Comment

Please login here to leave a comment.