You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
NWFstudent
Why don't you use original source code for start (bb stop indicator was always for free, no need to use decompiled version, and it is much easier to work with original code)
Thanks for your advice mr mladen.
Where can i find the original code?
EDIT: I think i found it, so much more clean readable code, thanks a thousands time.
This is it right?:
Thanks for your advice mr mladen.
Where can i find the original code?
EDIT: I think i found it, so much more clean readable code, thanks a thousands time.
This is it right?:
Thanks for your advice mr mladen.
Where can i find the original code?
EDIT: I think i found it, so much more clean readable code, thanks a thousands time.
This is it right?:
NWFstudent
I think this of MLADENs limited bar and this of MRTOOLs line versions are more latest and with mq4 format.
regards
Mladen
I’m trying to get the TMA mtf to work in my EA. I got the “tma centered” crossing the 200ma to work but the 1 &-1 of the mtf seems to be earlier for some reason & timely, see my chart.
Can you check my EA. Right now it’s set up to trade on the “TMA mtf” trend buffer #3. It compiles and runs in the tester but no trades & no errors. The only change I made to the TMA mtf is adding the SetIndexLabels. If I load both tmas indicators on a chart they mirror each other.
Appreciate any help
Ray
Mladen
I’m trying to get the TMA mtf to work in my EA. I got the “tma centered” crossing the 200ma to work but the 1 &-1 of the mtf seems to be earlier for some reason & timely, see my chart.
Can you check my EA. Right now it’s set up to trade on the “TMA mtf” trend buffer #3. It compiles and runs in the tester but no trades & no errors. The only change I made to the TMA mtf is adding the SetIndexLabels. If I load both tmas indicators on a chart they mirror each other.
Appreciate any help
Ray
i found this indicator on this site and i found it useful pls can you help me make an EA of it and make it trade immdiately when the arrow appear and close it the close of the next candle meaning it will trade just two candle and it should close if opposite arrow appear. pls
Hello together.
Can someone help me to add in this Channel-Indikator, how I can hide the upper Channels?!
I just need M1, M5, M15 and don´t understand this code....
Thanks.
Best regards, oink
Hi mntiwana/mladen,
i found simple indicator and need EA for it ... can any of one great coder can make this to EA
that is Macd dot.. i set it to 30 , 50, 9 it is giving decent profit... so i planned to do this automate ... so i need EA for this and trading rule is simply i tell here..1. when dot appear and stands for minimum 60 seconds to 90 seconds immediately take trade on that direction red - sell , blue -buy at market order..... no waiting for the candle close time...
2. after taken trade placing sl and this sl is trigger price+/-(trigger price*0.5/100) and this sl price is till that candle close with that dot.... suppose before candle close the dot disappears means no worry the trade is on board with sl. bu then candle close with dot then change sl to dot price ....
suppose some times sl will take place.. but no fresh dot appears.. so if sl hits by any time then wait for the candle close and if next candle comes to the initial trigger price take trade again with same mentioning rules
of entry sl and sl change and tp...
3. take profit is 1 is trigger price+/-(trigger price*1.6/100)
[for example suppose price is 100 and sell dot means our tp 1 is 100-(100*1.6/100) if buy dot means 100+ (100*1.6/100) ]
and tp 2 is trigger price+/-(trigger price*2.5/100)
tp 3 is trigger price+/-(trigger price*4.4/100)
at booking stage 1 trail sl to [ trigger price+/-(trigger price*1/100)]
at booking stage 2 trail sl to[ trigger price+/-(trigger price*2.1/100)]
at booking stage 3 trail sl to [trigger price+/-(trigger price*3..9/100)]
on this conditions not meet out ...then book fully at next dot appearance and do trade as per that next dot.
i am planning to do in indian market so make the lot size is 1 and multiples of 1 ..not like 0.01, 0.1
Hi mntiwana/mladen,
i found simple indicator and need EA for it ... can any of one great coder can make this to EA
that is Macd dot.. i set it to 30 , 50, 9 it is giving decent profit... so i planned to do this automate ... so i need EA for this and trading rule is simply i tell here..1. when dot appear and stands for minimum 60 seconds to 90 seconds immediately take trade on that direction red - sell , blue -buy at market order..... no waiting for the candle close time...
2. after taken trade placing sl and this sl is trigger price+/-(trigger price*0.5/100) and this sl price is till that candle close with that dot.... suppose before candle close the dot disappears means no worry the trade is on board with sl. bu then candle close with dot then change sl to dot price ....
suppose some times sl will take place.. but no fresh dot appears.. so if sl hits by any time then wait for the candle close and if next candle comes to the initial trigger price take trade again with same mentioning rules
of entry sl and sl change and tp...
3. take profit is 1 is trigger price+/-(trigger price*1.6/100)
[for example suppose price is 100 and sell dot means our tp 1 is 100-(100*1.6/100) if buy dot means 100+ (100*1.6/100) ]
and tp 2 is trigger price+/-(trigger price*2.5/100)
tp 3 is trigger price+/-(trigger price*4.4/100)
at booking stage 1 trail sl to [ trigger price+/-(trigger price*1/100)]
at booking stage 2 trail sl to[ trigger price+/-(trigger price*2.1/100)]
at booking stage 3 trail sl to [trigger price+/-(trigger price*3..9/100)]
on this conditions not meet out ...then book fully at next dot appearance and do trade as per that next dot.
i am planning to do in indian market so make the lot size is 1 and multiples of 1 ..not like 0.01, 0.1
That is a simple macd. You can use any EA that uses macd for that (even the macd sample that comes with the metatrader when you install it)
The 60 to 90 seconds condition in not possible (you can not have when exactly a signal happens, what is usually done instead is looking for a signal on a closed bar to avoid false signals). All the rest is fairly usual in any EA (except the "trigger price" is no doable - you can not fix the prices for an EA, that is why the tp and sl are used, but they are relative to the open price not art some fix price levels)
Hi dear programmers.
Im experimenting with mql4 to hopefully be a good programmer some day. My problem now has to do with measuring ticks/pips.
Im having a 5 digit broker and are using the following code:
where:
Of course this works on majors, but for example gold this will give me 1.5 pip instead of 15 and for dax it will give me 0.15pip instead
So I would want to multiply by 100 if the instrument is XAU/USD and by 1000 if the instrument is DE30.
How can I attack this problem?