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

Color bars



PureBytes Links

Trading Reference Links

Hi.
Is it possible to set a bar to a different color from the 
others depending on a condition? 

Graph0 = V; Graph0Style = 2; //Graph0Color = 6; 
Graph1 = MA(V,10); Graph1Style = 1; Graph1Color= 5; 
Graph2 = 2 * Graph1; Graph2Style = 1; Graph2Color = 5;

IIf(V>=Graph2, Graph0Color = 5, Graph0Color = 6);

Thanks
TomE