Can anyone please find me this afl for amibroker.......if anyone has it plz post it.

rnls

New Member
#21
Re: Can anyone please find me this afl for amibroker.......if anyone has it plz post

anyone please find me this afl for amibroker.......if anyone has it plz


error fix for pls helping pls experts
 
#22
Re: Can anyone please find me this afl for amibroker.......if anyone has it plz post

I found this indicator for MT could not find it for amibroker howmuch ever searched, its named as FX Super CrossOver for MT.......if someone has this can u please share it here......posting the screenshots of the indicator.











Hi every one;
Please KILVINHAND or other freinds, can you please share the AFL on the 3 picture?
i need exactly the same if it's possible because it's looks clean and powerfull...
thanks a tone for every one...
 

KelvinHand

Well-Known Member
#23
Re: Can anyone please find me this afl for amibroker.......if anyone has it plz post

Hi every one;
Please KILVINHAND or other freinds, can you please share the AFL on the 3 picture?
i need exactly the same if it's possible because it's looks clean and powerfull...
thanks a tone for every one...

In http://www.traderji.com/amibroker/77891-triggerlines.html
I already shared the MT4 code in post#1
PartTime_Trader already share the AFL in Post#8

Post #22 give you where to get the BBandStop.
It also shown you how closely match the AFL with your MT4 indicator done by PartTime_Trader.
Give him the credit and thank his hardwork.

You all are suppose do the comparison yourself but instead i do for you.

I already stated Method is just a method, is the Mind control the rest.
 
Last edited:

ayush2020

Well-Known Member
#24
Re: Can anyone please find me this afl for amibroker.......if anyone has it plz post

finally found this code of MT4 in our forum itself........can someone please convert this for amibroker it will really be very helpful......can somenone plz check this code in mt4 and tell if this the same code that I'm in search of.......


//+-------------------------------------------------------------------+
//| Trigger Line |
//| Copyright 2005 dwt5 and adoleh2000 |
//| http://www.metaquotes.net |
//| Modified by Kelvinhand |
//+-------------------------------------------------------------------+
#property copyright "Copyright 2005 dwt5 and adoleh2000 "
#property link "http://www.metaquotes.net/"

//---- indicator settings
#property indicator_chart_window
#property indicator_buffers 4
#property indicator_color1 Red
#property indicator_color2 Red
#property indicator_color3 DeepSkyBlue
#property indicator_color4 DeepSkyBlue

//---- buffers
double ExtMapBuffer1[];
double ExtMapBuffer2[];
double ExtMapBuffer3[];
double ExtMapBuffer4[];
double wt[];
double lsma_ma[];

extern int Rperiod = 55;
extern int LSMA_Period = 144;

//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- 7 additional buffers are used for counting.
IndicatorBuffers(6);

//---- drawing settings

SetIndexBuffer(0,ExtMapBuffer1);
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,1);

SetIndexBuffer(1,ExtMapBuffer2);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,1);

SetIndexBuffer(2,ExtMapBuffer3);
SetIndexStyle(2,DRAW_LINE,STYLE_SOLID,1);

SetIndexBuffer(3,ExtMapBuffer4);
SetIndexStyle(3,DRAW_LINE,STYLE_SOLID,1);

SetIndexBuffer(4,wt);
SetIndexBuffer(5,lsma_ma);

//---- initialization done
return(0);
}

int start()
{

//***** Modified by Kelvinhand ***********************
int counted_bars = IndicatorCounted();
//---- check for possible errors
if (counted_bars<0) return(-1);

//---- last counted bar will be recounted
if (counted_bars>0) counted_bars--;

int i,j;
double lengthvar;
double sum ;

int limit = Bars - counted_bars - Rperiod;


for(i = limit; i >= 0; i--) // MAIN For Loop
{
sum = 0;
for(j = Rperiod; j >= 1 ; j--) //LSMA loop
{
lengthvar = (Rperiod + 1)/3.0; //lengthvar = 21
sum+= ( j - lengthvar)*Close[Rperiod-j+i]; //tmp = 20 - 7 * close[20-j+i]
}
wt = sum*6/(Rperiod*(Rperiod+1));
lsma_ma = wt[i+1] + (wt-wt[i+1])* 2/(LSMA_Period+1);

ExtMapBuffer1 = wt;
ExtMapBuffer2 = lsma_ma;
ExtMapBuffer3 = wt;
ExtMapBuffer4 = lsma_ma;

if (wt < lsma_ma)
{
ExtMapBuffer4 = EMPTY_VALUE;
ExtMapBuffer3 = EMPTY_VALUE;
}

}
}
//+------------------------------------------------------------------+


to run in mt4 platform we need a file of extension (.ex4)..... if any body knows how to convert it into this type thn let us know ...
 

KelvinHand

Well-Known Member
#25
Re: Can anyone please find me this afl for amibroker.......if anyone has it plz post

to run in mt4 platform we need a file of extension (.ex4)..... if any body knows how to convert it into this type thn let us know ...
This is Do-It-Yourself:

In the MT4 platform,
- Press F4 OR select [Tool]->language Editor, will bring up the MQ4 editor.
- Goto [File]->[New] then select option "Custom Indicator" and <Next> button
- Enter the indicator Name eg "TriggerLine"
- Select the MT4 Source code in this thread of your post #24 and hightlight from the code start to code end, right click and select copy or CTRL-C
- Goto MT4 Editor, Select [Edit]->[Select All] to highlight the generated code then [Edit]->[Paste] OR CTRL-V.
- Press [File]->/<Compile> button OR <F5>, it will compile to the ex4 file for you
- Once compile success (see the description tab window "Errors" : 0 errors),
- Goto [View]->Navigator, look for your complied ex4 eg. Triggerline.ex4 and click to insert into your Price Chart/Indicator Window

== The End of the story ==
Take note:
Copy those codes that had "Code" or "Html", not "Quote" is more safe to error prompt.
 
Last edited:

ayush2020

Well-Known Member
#26
Re: Can anyone please find me this afl for amibroker.......if anyone has it plz post

This is Do-It-Yourself:

In the MT4 platform,
- Press F4 OR select [Tool]->language Editor, will bring up the MQ4 editor.
- Goto [File]->[New] then select option "Custom Indicator" and <Next> button
- Enter the indicator Name eg "TriggerLine"
- Select the MT4 Source code in this thread of your post #24 and hightlight from the code start to code end, right click and select copy or CTRL-C
- Goto MT4 Editor, Select [Edit]->[Select All] to highlight the generated code then [Edit]->[Paste] OR CTRL-V.
- Press [File]->/<Compile> button OR <F5>, it will compile to the ex4 file for you
- Once compile success (see the description tab window "Errors" : 0 errors),
- Goto [View]->Navigator, look for your complied ex4 eg. Triggerline.ex4 and click to insert into your Price Chart/Indicator Window

== The End of the story ==
Take note:
Copy those codes that had "Code" or "Html", not "Quote" is more safe to error prompt.
thanx kelvin ...... i tried to do this but final result is nt good.. i didnt got the chart as like above....
 
#28
Re: Can anyone please find me this afl for amibroker.......if anyone has it plz post

In http://www.traderji.com/amibroker/77891-triggerlines.html
I already shared the MT4 code in post#1
PartTime_Trader already share the AFL in Post#8

Post #22 give you where to get the BBandStop.
It also shown you how closely match the AFL with your MT4 indicator done by PartTime_Trader.
Give him the credit and thank his hardwork.

You all are suppose do the comparison yourself but instead i do for you.

I already stated Method is just a method, is the Mind control the rest.
Thanks to you for every words you write...thanks so so so much for you and for every collegue that give us a help:clapping:
 
#29
Re: Can anyone please find me this afl for amibroker.......if anyone has it plz post

@KelvinHand
Thanks a lot for the triggerlines link.......I was already having this formula but a simple settings change TL1 to 55 and TL2 to 2 has make it look the same what I was looking for......thanks a lot


By any chance do u have this afl......it looks good with clear entry and exit signal....

 

KelvinHand

Well-Known Member
#30
Re: Can anyone please find me this afl for amibroker.......if anyone has it plz post

@KelvinHand
Thanks a lot for the triggerlines link.......I was already having this formula but a simple settings change TL1 to 55 and TL2 to 2 has make it look the same what I was looking for......thanks a lot


By any chance do u have this afl......it looks good with clear entry and exit signal....

Yes. Even MT4 can use 55,2 or 3.

So Maybe you want to publish your whole system here. Setup your trading rules: