Nirvana.afl by MRTQ13

Dear Amibroker Fans / Raju Brother

i am facing problem in viewing 5 min chart. One AFL is showing but at the same time Rocket jel is not showing 5 min chart

Can u please guide me to view 5 Min chart with rocketjel.afl

zoom-in if it not showing...

or it may happen if not enough previous data stored. atleast u need 10 days data for 5 min chart.

those ma-s line r responsable for this type of error.

nothing serious.
 

ethan hunt

Well-Known Member
oye oye :clap:

they are back.

what about rules to trade ?

post live trades to see if those rules really hold good ?

@ amifan- what about blogspot ?

after market / delayed charts & explanation does not work !!!

~~~~~~~~~~~~~
reagrding the bantering/bickering posted here in my absence:
rules are required to trade a system which are not being provided & changed time & again after the system faliure.

PS: some imp eco measures to be announced monday, fm going / mms coming, so even a simple ema/stoch cross will give good results, & if you say RJ is rocking it will be a sham, even a bhelpuri wala outside dalal street will be making money without RJ.
 

kaly422000

Well-Known Member
zoom-in if it not showing...

or it may happen if not enough previous data stored. atleast u need 10 days data for 5 min chart.

those ma-s line r responsable for this type of error.

nothing serious.
option to add normal candle or heikin and how too use left panel and any option to hide the left panel. any way very very good work. i am just sugesting
 

prabhsingh

Well-Known Member
Will appreciate if seniors can assist in replying to query for attached image of SBI.
Can you let me know why we should have avoided taking position on up arrow marked with 1.According to Rockjet,if position was taken on that buy arrow that would incur to some losses.Hence what are the other conditions which should have been taken into consideration before buying on that point.Many thanks.
 
Hats off.. Amibrokerfans and all you Bros. Great job with the rocket jet. Respect! :thumb:
I will test this formula on shares in daily time interval. I think, it will be great experience.

@Amibrokerfuns: I wolud like to change the HeikinAshi to normal bar appearance. I have not found any parameters and in the code. Is there any possibility? Please help me solve this mystery. :)
 

sr114

Well-Known Member
@Amibrokerfuns: I wolud like to change the HeikinAshi to normal bar appearance. I have not found any parameters and in the code. Is there any possibility? Please help me solve this mystery. :)
To Kaly and Szachool

please replace code written in the Section (Flower) by the below lines of code
[reference of candle formation in Rocket Jet is the below line of codes :_Section_Begin(Flower); to _Section_end():]

_SECTION_BEGIN("Flower_HA_Normal Candle");

Show_color = ParamToggle("Display CandleColor", "No|Yes", 1);
r1 =5; //Param( "ColorFast avg", 5, 2, 200, 1 );
r2 =10; //Param( "ColorSlow avg", 10, 2, 200, 1 );
r3 =5; //Param( "ColorSignal avg", 5, 2, 200, 1 );

Prd1=4; //Param("ATR Period",4,1,20,1);
Prd2=7; //Param("Look Back",7,1,20,1);
green = HHV(LLV(L,Prd1)+ATR(Prd1),Prd2);
red = LLV(HHV(H,Prd1)-ATR(Prd1),Prd2);

HaClose =EMA((O+H+L+C)/4,3); // Woodie
//HaClose =(O+H+L+C)/4;
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
HaHigh = Max( H, Max( HaClose, HaOpen ) );
HaLow = Min( L, Min( HaClose, HaOpen ) );
//HaClose = ( HaClose + HaOpen + HaHigh + HaLow )/4;
Temp = Max(High, HaOpen);
Temp = Min(Low,HaOpen);

//////////
m1=MACD(r1,r2);
s1=Signal(r1,r2,r3);
mycolor=IIf(m1<0 AND m1>s1, ColorRGB(230,230,0),IIf(m1>0 AND m1>s1,colorWhite,IIf(m1>0 AND m1<s1,colorOrange,colorDarkRed)));
if(Show_color)

{
ColorHighliter = mycolor;
SetBarFillColor( ColorHighliter );
}

barColor=IIf(C>Green ,colorWhite,IIf(C < RED,colorRed,colorYellow));
barColor2=IIf(Close > Open, colorWhite, colorRed);

if( ParamToggle("Plot Normal Candle", "No,Yes", 1 ) )
PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, " " , barcolor, styleCandle | styleThick );
else
PlotOHLC( Open, High, Low, Close, " " , barcolor2, styleCandle | styleThick );

_SECTION_END();
this will change the Heikin Ashi to Normal Candle via parameters window

sr
 
Last edited:

Similar threads