very poor man nead some help

#11
i am not at all concerned whether u r poor or any other thing
i felt the words expressed initially like literally beggars @very poor man still waiting some help @
if i have hurt u r feelings i m really sorry for the same
 
#13
peopel who will help me to change this to daily time frame i will vry aprriciated to him im not here to fight any body or dissscuse if im rich or poor
so lets concentrate on this please
EMAV = EMA(V, 10);
Above = 0;
Below = 0;

if(BarCount > 10)
{
for(i = 1; i <11; i ++)
{
if(V[BarCount - i] > EMAV[BarCount - i]) Above = Above + 1;
if(V[BarCount - i] < EMAV[BarCount - i]) Below = Below + 1;
}
Plot(Above, "Above", colorGreen, styleOwnScale | styleNoDraw | styleNoLabel);
Plot(Below, "Below", colorRed, styleOwnScale | styleNoDraw | styleNoLabel);

}
 

SavantGarde

Well-Known Member
#15
Reading The Posts Here Remembered A Story.....It Goes Like This...

King Of A Very Prosperous Kingdom Wasn't Happy....
He Decides To Wear A Shirt/Kurta Of A Happy Man....
...So He Sends His Emissaries....To Look For A Happy Man & Bring His Shirt For Himself...
Men....Search Far & Beyond Within The Kingdom But...Sadly They Don't Find A Happy Man.....They Expand Their Search To The Neighbouring Kingdom & They Do Find A Happy Man & Eventually Return & Present Themselves To The King....
Upon Being Asked By The King... If They Found A Happy Man...They Replied In Affirmative..Saying 'Yes'
...& Then Upon Being Asked To Present The Shirt Of The Happy Man...Men Looking Embarassed....Reply That Although They Did Find A Happy Man....He Didn't Possess One Because He Was Very Poor.


SavantGarde
 

vinodkiyer

Well-Known Member
#16
timeframeset(inDaily);
EMAV = EMA(V, 10);
Above = 0;
Below = 0;

if(BarCount > 10)
{
for(i = 1; i <11; i ++)
{
if(V[BarCount - i] > EMAV[BarCount - i]) Above = Above + 1;
if(V[BarCount - i] < EMAV[BarCount - i]) Below = Below + 1;
}
Plot(Above, "Above", colorGreen, styleOwnScale | styleNoDraw | styleNoLabel);
Plot(Below, "Below", colorRed, styleOwnScale | styleNoDraw | styleNoLabel);

}
timeframerestore();
 
#17
timeframeset(inDaily);
EMAV = EMA(V, 10);
Above = 0;
Below = 0;

if(BarCount > 10)
{
for(i = 1; i <11; i ++)
{
if(V[BarCount - i] > EMAV[BarCount - i]) Above = Above + 1;
if(V[BarCount - i] < EMAV[BarCount - i]) Below = Below + 1;
}
Plot(Above, "Above", colorGreen, styleOwnScale | styleNoDraw | styleNoLabel);
Plot(Below, "Below", colorRed, styleOwnScale | styleNoDraw | styleNoLabel);

}
timeframerestore();
theres somthing wrong with your fromula because the result on hourly frame and daily frame not the same
any way thnx to you
 

Similar threads