Can alerts be generated from a Watchlist?
my code
main
{
if(getBarState() == BARSTATE_NEWBAR)
{
if(1+1==2) Alert.addToList( getSymbol(), "test", Color.green, Color.black );
}
return;
}
doesn't seem to produce any results in the EFS Alerts window or the Alerts Log window.
my code
main
{
if(getBarState() == BARSTATE_NEWBAR)
{
if(1+1==2) Alert.addToList( getSymbol(), "test", Color.green, Color.black );
}
return;
}
doesn't seem to produce any results in the EFS Alerts window or the Alerts Log window.
Comment