First thing is both are FIBONACCI numbers
second very short term and mid term EMAs so cross will issue signal earliest
third default settings of CCE with ADX is enough to predict trend change
Hi
Code u reqd. what i understood
before day or two cross alert / exploration for volume / volume comparison with previous day volume etc.
is it?
regds/SHIVA
this is actually issue errors in displaying line values of the different time frame values in a single chart
check with 15min/hourly/daily
each time frame issue different value to other time frame values
TimeFrameSet( in15Minute ); // switch to 5 minute frame
b1=WMA(H+L+C/3,10)...
this was the formula used to color changed.
so i consider this is for buy and SELL
ihope this is useful
Buy=entrysignal;
Sell=exitsignal;
Buy=ExRem(Buy,Sell);
Sell=ExRem(Sell,Buy);
PlotShapes(shapeUpArrow * Buy,colorWhite,0,L,-15);
PlotShapes(shapeDownArrow * Sell,colorBlue,0,H,-15);
correct the error
A1= Open;
B1= High;
C1 =Close;
D1 = B1-A1;
E1 = A1-C1;
f1=A1+(B1-A1)+10;
g1=A1-(B1-A1)-10;
h1=F1-12;
i1=F1+21;
j1=G1+12;
k1=G1-21;
//if D is LESS than E : then Plot lines as follows
for(i=0;i<BarCount;i++)
{
if (D1[i]<E1[i])
{
Plot (f1,"1",colorWhite)...
bi = BarIndex();
ii = SelectedValue( bi ) - bi[ 0 ];
if (C[ii]>O[ii])
GfxSetTextColor(colorGreen);
else
GfxSetTextColor(colorRed);
i want color change only when
current close above previous candle high