TopGunNote attached a lovely MACD Indicator here:
I'm wanting to add alerts to everytime the colour changes (every yellow circle) in the histogram below:
Any and all advice on how to add that code would be appreciated, thanks!
The BltTriggerLines does it like this:
if (CrossAbove(Trigger, Average, 1))
{
if (SoundAlert && !SoundPlayed)
{
PlaySound(NinjaTrader.Core.Globals.InstallDir+"\\sounds\\"+SoundFile);
SoundPlayed = true;
}

Comment