Ami broker buy/sell signal

#1
Sir, I am new to AMI BROKER (downloaded version) I am using it for Intra Day 5mins chart, I get BUY/SELL signals but, the option show arrows in actual trade doesn't work, after 5 mins when it refreshes the previous buy/sell signals disappear till I double click the scrip in ANALYSIS window..is it same for all or I need some specific afl to fix this..I want the buy sell signal always available in the chart, n when new buy sell signal comes that needs to appear in the chart auto
 

casoni

Well-Known Member
#2
Hello,
signal appears/disappears , only when formula ais looking into futures ,
your formula would be based on zig , peak...
thank you
 

KelvinHand

Well-Known Member
#3
Hello,
signal appears/disappears , only when formula ais looking into futures ,
your formula would be based on zig , peak...
thank you
All right. you are the best. explain clear and sharp.

it uses future quotes .. Repaint.

its not advisable to trade...

Don't use the AFL.
 

mastermind007

Well-Known Member
#4
Hello,
signal appears/disappears , only when formula ais looking into futures ,
your formula would be based on zig , peak...
thank you
Zig or Peak is rarely the problem, Casoni. Even the Supply demand we showed at other thread uses Peak, Trough.

It is basically faulty coding and is present in soooooo many free AFLs that I nw think the fault is not accidental but deliberate
 

KelvinHand

Well-Known Member
#5
Hi mastermind007,

We can go around guessing the problem.

But first thing we never question MR partha644, He say he is new to amibroker. Did he do the right thing ?

- Where his AFL Script posted request for fix?
- Did he tell us which Amibroker Version he is using ?
- Did it because of the setup that causing the problem ?


In here:
http://www.traderji.com/amibroker/77168-i-need-afl-please-help-me-3.html
QUOTE=masterstroke;845339]if you put afl in code check .. it clearly says that as it uses future quotes .. its not advisable to trade...[/QUOTE]

I really don't know how the code check was carried out.
There are simple problem that causing which i stressed so many time, using <Code><../Code> to reduce errors.
People come in and grab and errors surface, nobody give a care of correct guideline of the above AND
never direct you to the point of errors.

I received "Plot 500 times" error, I massauge the problem AFL a bit. And it work fine.

There could be some kind of errors not reported correctly during "Verify Syntax" on the amibroker.
That could be cause by inexperience coder not attending to the structuring bracket {} properly.

//----------------------------------------------------------------------------------------------------------

I think the faulty coding are presented by the inexperience coder accidentally not deliberate.
So far i encounter are issue that amibroker revision change and impose some limitation to the AFL which resulted the earlier version work ok but latest no working or via-vesa
 
Last edited:

mastermind007

Well-Known Member
#6
Hi mastermind007,

We can go around guessing the problem.

But first thing we never question MR partha644, He say he is new to amibroker. Did he do the right thing ?

- Where his AFL Script posted request for fix?
- Did he tell us which Amibroker Version he is using ?
- Did it because of the setup that causing the problem ?

I really don't know how the code check was carried out.
There are simple problem that causing which i stressed so many time, using <Code><../Code> to reduce errors.
People come in and grab and errors surface, nobody give a care of correct guideline of the above AND
never direct you to the point of errors.

I received "Plot 500 times" error, I massauge the problem AFL a bit. And it work fine.

There could be some kind of errors not reported correctly during "Verify Syntax" on the amibroker.
That could be cause by inexperience coder not attending to the structuring bracket {} properly.

//----------------------------------------------------------------------------------------------------------

I think the faulty coding are presented by the inexperience coder accidentally not deliberate.

So far i encounter are issue that amibroker revision change and impose some limitation to the AFL which resulted the earlier version work ok but latest no working or via-vesa
Inexperienced Coder "argument", I accept. Even experienced coders can make mistakes.

Can you work out ratio of good vs bad AFLs (from trading P.O.V. only) that u find floating around. Efficient coding is all secondary.
 
Last edited:
#7
Sir, am using this, it was fixed somehow, thn my laptop got formatted n same problem again I need to go to analysis n scan n double click to see aftr 5 mins it disappears it again..

_SECTION_BEGIN("MABIUTS");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) Vol " +WriteVal( V, 1.0 ) +" {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 )) ));

Buy=EMA(C,13)>EMA(EMA(C,13),9) AND Cross (C,Peak(C,5,1));
Sell=Cross (EMA(EMA(C,13),9),EMA(C,13));
MYcolor = IIf( EMA(C,13)>EMA(EMA(C,13),9) AND C>Peak(C,2,1), colorGreen, IIf(EMA(C,13)>EMA(EMA(C,13),9) AND C<Peak(C,2,1),colorBlue, colorOrange ));

PlotOHLC( Open, High, Low, Close, "", Mycolor, styleBar );

shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes( shape, IIf( Buy, colorGreen, colorRed ),0, IIf( Buy, Low, High ) );

GraphXSpace = 5;
dist = 1.5*ATR(10);

for( i = 0; i < BarCount; i++ )
{
if( Buy ) PlotText( "Buy\n@" + C[ i ], i, L[ i ]-dist, colorGreen );
if( Sell ) PlotText( "Sell\n@" + C[ i ], i, H[ i ]+dist, colorRed);
 
#8
Dear Friends, is there any way to see OLD AUTOMATIC ANALYSIS and New Analysis to show in the chart, and once the signals come, as for me, they don't come in the chart unless I double click on the signals by analysis