Amibroker - AFL Examples

#91
Hi I am mani, anyone known Elliott wave plugin including Buy Sell signals for Amibroker or Metastock. If find please post file or url.

Thanking you,
Mani.
 
#93
I am a newbie to AMIBROKER, I purchased amibroker professional edition along with esignal data feed, I am not seeing my charts automatically reflecting the new real time data, evey time i have to click on force backfill to make my chart to have latest ticks, I am not able to understand if this is expected behavior or we can make charts to automatically show the data, please help
 
#94
Moment you open a chart data should automatically backfill in 1 or 2 seconds. Only rarely when it does not automatically refresh you have to force backfill.
In data settings if you set base time interval as tick then set your max bars appropriately (try 50000). Hope this helps.
 
#95
Refer to "How to set up AmiBroker with eSignal feed (RT version only)" in the Help Section of Amibroker.

That gives detailed explanation of setting up a database with eSignal datafeed in amibroker.

John
 
#96
Thanks Coolblue and JD for your help, I will check it today to see if it helps and I configured based on the settings provided in "How to set up AmiBroker with eSignal feed (RT version only)"
 
#97
Hello
A intraday system follows, Your views will be appreciated( Collected from net)

/* Intraday template */

GraphXSpace = 3 ;

/* These are the calcs for the oscilator values and plots the paint bars*/
Osc = EMA(C,8) - EMA(C,34);
acc = Osc - EMA(Osc,13);

col = IIf(Osc > Ref(Osc,-1) AND acc > Ref(acc,-1),colorBrightGreen,
IIf(Osc < Ref(Osc,-1) AND acc < Ref(acc,-1),colorRed,colorBlue));
barcolor= 1;// this sets the color of the body of the candlesticks to default
Plot( Close, "Intraday Template" ,col/barcolor, styleBar);

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

/* This is the code for the exponential moving average flipper */

mov = 13;
hi = EMA(H,mov);
lo = EMA(L,mov) ;
x1 = IIf(C>Ref(hi,-1),1,IIf(C<Ref(lo,-1),-1,0));
x2 = ValueWhen(x1!=0,x1,1);
st = IIf(x2==-1,Hi,Lo);
Plot(st,"",colorYellow,styleNoLine|styleDots);

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

/* This next code calculates the previous days high, low and close */

Hi1 = IIf(Day()!=Ref(Day(),-1),Ref(HighestSince(Day()!=Ref(Day(),-1),H,1),-1),0);
Hi = ValueWhen(Day()!=Ref(Day(),-1),Hi1,1);
Lo1 = IIf(Day()!=Ref(Day(),-1),Ref(LowestSince(Day()!=Ref(Day(),-1),L,1),-1),0);
Lo = ValueWhen(Day()!=Ref(Day(),-1),Lo1,1);
Cl1 = IIf(Day()!=Ref(Day(),-1),Ref(C,-1),0);
Cl = ValueWhen(Day()!=Ref(Day(),-1),Cl1,1);

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

/* Calculates and plots the pivots */

rg = (Hi - Lo);
bp = (Hi + Lo + Cl)/3;
r1 = (bp*2)-Lo;
s1 = (bp*2)-Hi;
r2 = bp + r1 - s1;
s2 = bp - r1 + s1;
r3 = bp + r2 - s1;
s3 = bp - r2 + s1;
r4 = bp + r2 - s2;
s4 = bp - r2 + s2;

Plot(bp,"",colorOrange,styleBar|styleNoRescale);
Plot(s1,"",colorTeal,styleBar|styleNoRescale);
Plot(s2,"",colorTeal,styleBar|styleNoRescale);
Plot(s3,"",colorTeal,styleBar|styleNoRescale);
Plot(s4,"",colorTeal,styleBar|styleNoRescale);
Plot(r1,"",colorTeal,styleBar|styleNoRescale);
Plot(r2,"",colorTeal,styleBar|styleNoRescale);
Plot(r3,"",colorTeal,styleBar|styleNoRescale);
Plot(r4,"",colorTeal,styleBar|styleNoRescale);

//--end----------------------------------------------------------------------------

This works with intraday data


Sunando
 
#98
Thanks Coolblue and JD, I followed "In data settings if you set base time interval as tick then set your max bars appropriately (try 50000). " from coolblue, it worked, now I am able to see real time chart
 
#99
Here is a tidbit found on another site-


I am your constant companion;
I am your greatest helper or your heaviest burden.
I will push you onward or drag you down to failure.
I am at your command.

Half of the tasks that you do you might just as well
Turn over to me and I will do them quickly and correctly.

I am easily managed; you must merely be firm with me.
Show me exactly how you want something done.
After a few lessons, I will do it automatically.

I am the servant of all great people
and the regret of all failures as well.
Those who are great, I have made great.
Those who are failures, I have made failures.

I am not a machine but I will work with all its precision
Plus the intelligence of a person.

Now you may run me for profit or you may run me for ruin.
It makes no difference to me.

Take me, train me, be firm with me and
I will lay the world at your feet.
Be easy with me and I will destroy you.

I am called Habit!

That was really a good one Saji
 

Similar threads