- Search Crypto Craft
-
Beerrun replied Dec 5, 2018Are you sure that message comes from my indicator? I never coded the capability to include ask or bid in the alert message.
I will code your EAs and Indicators for no charge
-
Beerrun replied Dec 5, 2018This is from the MQL book sample on IndicatorCounted(): if(counted_bars>0) counted_bars--; limit=Bars-counted_bars; //---- main loop for(int i=0; i<limit; i++)
I will code your EAs and Indicators for no charge
-
Beerrun replied Dec 4, 2018Here is the indicator you requested in your first post, the conditions are based off the candle bodies and not the wicks.
I will code your EAs and Indicators for no charge
-
Beerrun replied Dec 3, 2018I think I can work with that, can add an option to use the wicks instead of bodies.
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 30, 2018Thank you. I’ll see what I can do.
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 30, 2018Edit: misread the post Lol leave the Android phone at home?
MT4 push notification issues on android
-
Beerrun replied Nov 29, 2018Your pm settings don’t allow me to message you. Could you post a pic with candles labeled by order, ex 1,2,3,4? And specify the candle dimensions.
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 29, 2018You can change the alert message from the input box

I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 29, 2018I pm’d you. We’ll try to solve this for you
The notifications have worked properly for me for multiple hours and on multiple computers, so it might be on your end.I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 29, 2018As simple as that would be, it’s impossible with the ex4 file; upload the mq4.
Fixing Your Indicators or EAs (Free)
-
Beerrun replied Nov 29, 2018I’d like to help. Pm me please.
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 29, 2018Check that your metaquotes id is in your notification tab of mt4 settings, check that your phone app has the same id, and click the test button under mt4 notification settings.
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 29, 2018It already has push notification

I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 28, 2018No worries we got it sorted out anyways
Here is your indicator with 2 user input levels and alert options.I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 27, 2018You're quite welcome. However, here is an improved version to try
This is strictly a two line indicator, without your original indicator and with a few more options. You can change colours and messages also. (Edit) I added push notifications ...I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 27, 2018Hey Kouun try this. I’m at work so haven’t tested or compiled. extern double Takeprofit=3000.; extern double Stoploss=1000.; extern double Lost=0.1; input double Distance=300.; input double BuyStopPrice=200.; void OnTick(){ ...
I need help fixing the code Buy limit (buystop)
-
Beerrun replied Nov 27, 2018Try this out Stan, I'm sorry only alerts. I hope you don't mind, I added single line option with the different price modes below it. You can adjust line settings on the fly also. Green line is crossed above and red for crossed below.
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 23, 2018Im glad it helped
Remember to always count down orders, and the function type needed to be the same as the returned value type.return value of 'OrderSelect' should be checked - Help Please
-
Beerrun replied Nov 23, 2018maybe this would be better lol? datetime LastOrderTime(string argSymbol,int argMagicNumber){ datetime LastOrder=0; for(int Counter=OrdersTotal()-1;Counter>=0;Counter--){ if(OrderSelect(Counter,SELECT_BY_POS)){ ...
return value of 'OrderSelect' should be checked - Help Please