- Search Crypto Craft
-
Beerrun replied Dec 5, 2019What do you mean by this?
I will code your EAs and Indicators for no charge
-
Beerrun replied Dec 4, 2019Totally can relate; I go to open the indicator list but instead click one-click-trading

Clicking Close Order instead of Modify
-
Beerrun replied Dec 3, 2019Just wanted to add my $0.02: for someone asking for help identifying indicators, your tone/words sure are pushing away us coders who could be able to help
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 30, 2019You are setting both the time values the same as well as the prices, so at most you would see just a dot.
OBJ_HLINE between two points in time
-
Beerrun replied Nov 30, 2019Check the experts tab of your terminal, see if there’s any errors like array out of range or 0 divide, etc
Why is this indi not working?
-
Beerrun replied Nov 28, 2019Ah I saw the piprange input in your code so I figured you wanted a buffer. What you highlighted is the call to the alert function: — 1/true for up alert (“above”) — 0/false (any number not 1 really) for down alert (“below”). — The price and line ...
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 28, 2019Whoops I always forget one little thing lol But I'm glad you could figure it out
Added to mq4:I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 22, 2019Yessir, its linked to your mt4 terminal so can re-compile an indicator/EA that is already running and see the changes immediately. But also for the F1 reference documentation, just highlight any code and hit F1, metaeditor will bring up the ...
Need Help with Simple Coding
-
Beerrun replied Nov 22, 2019You would just need to go to metaeditor, create new script and copy/paste the code snippet into it. If you are combining snippets into one test file then #property strict is needed since I declared a new i variable multiple times.
Need Help with Simple Coding
-
Beerrun replied Nov 22, 2019While() is a loop, everything in the following {} is repeatedly iterated as long as the condition inside () is true. So to make a script stay on the chart, you wrap all your start() code in an infinite loop and never break the loop. As scripts these ...
Need Help with Simple Coding
-
Beerrun replied Nov 22, 2019It is decompiled code, I don’t think anyone would want to modify it. You could try mine at url
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 21, 2019No this is incorrect. When your terminal receives a new tick, start() (or OnTick()) is called. OnTimer() is called by the event timer at an interval you set using EventSetTimer()/EventSetMillisecondTimer(). The two functions are “event handlers” and ...
Need Help with Simple Coding
-
Beerrun replied Nov 20, 2019The activations you mention are handled by MT4/5 through the terminal. The activations are a requirement of MQ (minimum activations=5) and are part of the MQ connection between your terminal and their website. The simplest way to offer the same ...
Questions about MQL5 Market and EA
-
Beerrun replied Nov 18, 2019Did you use your code, particularly “else”? If you use “else” following “if(OrderType()==0)” then it will also include pending orders in the sum. if(OrderType()==0)//buy market order else {}//all other orders market+pending I’m not sure if that is ...
How to get Net Floating Pip Count from all Open Active Orders?
-
Beerrun replied Nov 16, 2019Here you go, changes made according to the pm I sent you: added arrows and alerts. I did not add the comments, I will just pm that to you
I will code your EAs and Indicators for no charge
-
Beerrun replied Nov 15, 2019OrderSelect is a bool so “==1” isn’t needed. Multiply by 0.1 to convert from points to pips. And the bracket is not needed if only one thing follows it. Also always count down your orders. But yes I had some typos
doing it on ...How to get Net Floating Pip Count from all Open Active Orders?
-
Beerrun replied Nov 15, 2019Something like this: double sum=0; for(int o=OrdersTotal()-1;o>=0;o—) if(OrderSelect(o,SELECT_BY_POS,MODE_TRADES){ RefreshRates(); if(OrderType()==0)sum+=Bid-OrderOpenPrice(); if(OrderType())sum+=OrderOpenPrice()-Ask;} sum*=0.1; Print(“Order Pip ...
How to get Net Floating Pip Count from all Open Active Orders?
-
Beerrun replied Nov 12, 2019Something like this: int start(){ if(OrderSelect(i,SELECT_BY_POS,MODE_TRADES)){ if(OrderSymbol()!=_Symbol)continue; if(OrderType()==0)if(OrderClosePrice()>=iMa(...))OrderClose(...); if(OrderType()==1)if(OrderClosePrice()<=iMa(...))OrderClose(...);} ...
Dynamic Takeprofit
-
Beerrun replied Nov 6, 2019Its purpose is not to find the lowest low; you told it to find the lowest low: MODE_LOW Perhaps it would be easier for you to make your own lowest function, then you wouldn’t have to deal with iLowest and can modify the code whenever you want.
I will code your EAs and Indicators for no charge