Help Needed

#1
Hiii Guys,

This is my first post in the forum, so far i learnt a lot from this forum, also I learnt a use of AmiBroker!!

However, I need some help...

There are no Stochastic os. Chart in my AmiBroker, how to access that & also i want PPO & Stochastic chart on my first sheet along with main BB Price Chart...how to do that??
 
#2
Thanks a lot. Ravi

Yup, i got it all..

Thank u again:clapping:.

Regards

Pravin.


Hi,
You can access all available formulas from the navigation menu generally found on you left in amibroker, found under the subheading 'charts'. I'm sure you can find all the required formulas there including Stoh etc. Other than that if you need any others, just google it and you'll get them for free online.
 
#3
Hi,
You can access all available formulas from the navigation menu generally found on you left in amibroker, found under the subheading 'charts'. I'm sure you can find all the required formulas there including Stoh etc. Other than that if you need any others, just google it and you'll get them for free online.
Thanks a lot Ravi..

Yup, I got it..

Thanks again.

Regards

Pravin.
 
#4
I have recently started using Amibroker. I am unable to figure out a very simple functioning - to view 5 day or 10 day chart in Amibroker. I have full one year data in my data base. But I dont know how to set these custom intervals in chart view pane - there by default Ab has d, w, m (day, week, month) interval and in intraday it has one minute, 5 min etc plus customised intervals. These I can see but when I try to see the chart based on say last 15 days data or 10-day or n-day customised chart .. I dont know how to do it. I would be really very obliged if some fellow members could help me figure it out. If it needs some formula/AFL - what is that and how to execute it? Plz help!
 
#5
Hiii ravi

Need help again..

Is there any chance to connect Amibroker with Google Finance real time quote??, as i find google Finance is more accurate & Fast!!as Amibriker updating there records with Yahoo Finance, than any way to update that data with Google Finance?

Regards

Pravin.
 
#6
Hello All,

This is my first post in this forum.Watching all the conversations, I am sure that some one here can help me.
I have started using Amibroker( trial version) for a couple of weeks.But I am wrestling with some features of the software.One,I am not able to get the trade arrows displayed.Two,scans are not repeated at all, during trading hours, inspite of setting it to 5min/10 min.
Can any one help.
Thanks in advance

PKJee
 
#7
One,I am not able to get the trade arrows displayed.Two,scans are not repeated at all, during trading hours, inspite of setting it to 5min/10 min.
1. How does the code look like? Do you have any Buy, Sell, Short, Cover rules? Without no more information it's impossible to know the reason

2. You need to activate 'Auto-Repeat'. Setting interval is not enough!
 

Abhi1284

Active Member
#8
can anyone put visual arrown in below afl with sell and buy price

_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
_SECTION_END();


TimeFrameSet(inDaily);
DayHigh = LastValue(H);
DayLow = LastValue(L);
TimeFrameRestore();

Title = Date() + ", Op=" + Open + ", Hi=" + High + ", Lo=" + Low + ", LTP=" + Close + ", Change= " + SelectedValue( ROC( C, 1 ) ) + "%" + "\n Today`s High=" + DayHigh + ", Today`s Low=" + DayLow + " DAY TO DAY SYSTEM call 9864066262 for this chart" ;












no=21;
res=HHV(H,no);
sup=LLV(L,no);
avd=IIf(C>Ref(res,-1),1,IIf(C<Ref(sup,-1),-1,0));
avn=ValueWhen(avd!=0,avd,1);
supres=IIf(avn==1,sup,res);
a=Cross(C,supres);
b=Cross(supres,C);
style = a * styleStaircase + b * styleStaircase;
PlotShapes(a,style, IIf(a,colorGreen,colorRed), 0, IIf(a,Low,High));
Plot(supres,"Swing",colorYellow,styleStaircase);
_SECTION_END();



_SECTION_BEGIN("trend");
uptrend=PDI(20)>MDI(10)AND Signal(29)<MACD(13);
downtrend=MDI(10)>PDI(20)AND Signal(29)>MACD(13);
Plot( 2, /* defines the height of the ribbon in percent of pane width */"ribbon",
IIf( uptrend, colorGreen, IIf( downtrend, colorRed, 0 )), /* choose color */

styleOwnScale|styleArea|styleNoLabel, -0.5, 100 );




// set background gradient colours
SetChartBkGradientFill( ParamColor("BgTop", ColorRGB( 172,172,172 )),ParamColor("BgBottom", ColorRGB( 102,136,187 )),ParamColor("titleblock",ColorRGB( 255,255,255 )));






m=IIf(ParamList("select type","Message Board|Message Board1")=="Message Board",-1,0);


messageboard = ParamToggle("Message Board1","Show|Hide",0);
showsl = ParamToggle("Stop Loss Line", "Show|Hide", 0);
m1 = ParamToggle("Message Board1","Show|Hide",0);

style = a * styleStaircase + b * styleStaircase;

PlotShapes(a,style, IIf(a,colorGreen,colorRed), 0, IIf(a,Low,High));
if (showsl == 0) Plot(supres,"Stop Loss",colorCustom14,styleDots);
exitlong = Cross(supres, H);
PlotShapes(exitlong * shapeNone, colorBlack,0,H,-10);
exitshort = Cross(L, supres);
PlotShapes(exitshort * shapeNone, colorBlack,0,L,-15);

Buy = exitshort;
Sell = exitlong;
//Short = Sell;
//Cover = Buy;
Buy = ExRem(Buy,Sell);
Sell = ExRem(Sell,Buy);
//Short = ExRem(Short, Cover);
//Cover = ExRem(Cover, Short);
AlertIf( Buy, "", "BUY @ " + C, 1 );
AlertIf( Sell, "", "SELL @ " + C, 2 );

for (i=BarCount-1; i>1; i--) {
if (Buy == 1) {
entry = O;
sig = "BUY";
sl = supres[1];
tar1 = entry + (entry * .0090);
tar2 = entry + (entry * .0150);
tar3 = entry + (entry * .0250);
tar4 = entry + (entry * .0350);
tar5 = entry + (entry * .0450);
tar6 = entry + (entry * .0550);
tar7 = entry + (entry * .0650);
tar8 = entry + (entry * .0750);
tar9 = entry + (entry * .1000);

bars = i;
i = 0;
}
if (Sell == 1) {
sig = "SELL";
entry = O;
sl = supres;
tar1 = entry - (entry * .0090);
tar2 = entry - (entry * .0150);
tar3 = entry - (entry * .0250);

tar4 = entry - (entry * .0325);
tar5 = entry - (entry * .0500);
tar6 = entry - (entry * .0750);
tar7 = entry - (entry * .0850);
tar8 = entry - (entry * .0950);
tar9 = entry - (entry * .1000);



bars = i;
i = 0;
}
}

Offset = 20;
Clr = IIf(sig == "BUY", colorLime, colorRed);
ssl = IIf(bars == BarCount-1, supres[BarCount-1], Ref(supres, -1));
sl = ssl[BarCount-1];

printf("Last " + sig + " Signal came " + (BarCount-bars) + " bars ago");
printf("\n" + sig + " @ : " + entry + "\nStop Loss : " + sl + " (" + WriteVal(IIf(sig == "SELL",entry-sl,sl-entry), 2.2) + ")"+ "\nTarget_1 : " + tar1 + "\nTarget_2 : " + tar2 + "\nTarget_3 : " + tar3);
printf("\nCurrent P/L : " + WriteVal(IIf(sig == "BUY",(C-entry),(entry-C)),2.2));

if (messageboard == 0) {
GfxSelectFont( "Tahoma", 13, 100 );
GfxSetBkMode( 1 );
GfxSetTextColor( colorWhite );

if (sig =="BUY")
GfxSelectSolidBrush( colorDarkRed ); // this is the box background color
else
GfxSelectSolidBrush( colorRed ); // this is the box background color

pxHeight = Status( "pxchartheight" ) ;
xx = Status( "pxchartwidth");
CENTER = 20;
width =31;
x = 2;
x20 = 180;

y = Status( "pxchartheight" );

GfxSelectPen( colorDarkRed, 1); // broader color
GfxRoundRect( x, y - 400, x20, y , 7, 7 ) ;

GfxTextOut( Name(),13,y-398);

GfxTextOut( ("" + WriteIf(sig =="BUY",sig + " @ ",sig + " @") + " : " + entry), 13, y-380);
GfxTextOut( ("Trailing SL : " + sl + " "), 13, y-360);

GfxTextOut( ("TGT:1 : " + tar1), 13, y -340);
GfxTextOut( ("TGT:2 : " + tar2), 13,y-320);

GfxTextOut( ("TGT:3 : " + tar3), 13, y -300);
GfxTextOut( ("TGT:4 : " + tar4), 13,y-280);
GfxTextOut( ("TGT:5 : " + tar5), 13, y -260);
GfxTextOut( ("TGT:6 : " + tar6), 13,y-240);


GfxTextOut( ("TGT:7 : " + tar7), 13,y-220);
GfxTextOut( ("TGT:8 : " + tar8), 13, y -200);
GfxTextOut( ("TGT:9: " + tar9), 13,y-180);

GfxTextOut( ("Current P/L : " + WriteVal(IIf(sig == "BUY",(C-entry),(entry-C)),2.2)), 13, y-0);;
}
/* -------------------------------------------------------------------------------------- */
 
#9
1. How does the code look like? Do you have any Buy, Sell, Short, Cover rules? Without no more information it's impossible to know the reason

2. You need to activate 'Auto-Repeat'. Setting interval is not enough!
Hi detwo sir, i clicked on auto-repeat , but still when i scan it show daily timeframe, not realtime, why is that happening?

regards
 

Similar threads