[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[amibroker] How do I code this?



PureBytes Links

Trading Reference Links

 I want BUY = (when color is GREEN or WHITE), how do I code it please?

 

Here are my code..

 

//*******************************************************

//  #4 VOLATILITY Ribbon CODES

//*******************************************************

EntrySignal = C > ( LLV( L, 10 ) + 2 * ATR( 10 ) );

ExitSignal = C < ( HHV( H, 10 ) - 2 * ATR( 10 ) );

Color = IIf( EntrySignal, colorGreen, IIf( ExitSignal, colorRed, colorWhite
));

TrailStop = HHV( C - 2 * ATR(10), 15 );

ProfitTaker = EMA( H, 13 ) + 2 * ATR(10);

 

Buy = ExRem( EntrySignal, ExitSignal ) AND (COLOR IS GREEN OR WHITE);

SELL = ExRem( eXITsIGNAL, eNTRYsIGNAL );

 

Thanks for your help.