- Search Crypto Craft
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Jul 14, 2022Recently, I did work on similar one - using ATR to measure Candle Size if it is over or not. Since ATR return value is not in full interger value, simplest way to convert was to multiply using some kind of multiplier, adjust for JPY pair. Refer ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 14, 2022this might help. Maybe, your deviation ( A.K.A Slippage ) is too tight. How To Fix “Off Quotes” in MT4/MT5? | Blueberry Markets Help Center
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 13, 2022Made that as optional to Show_TF_Buttons. Default = false.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 13, 2022No idea. MT4 doesn't use XML format. Also, it seems those contents are all encrypted.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 12, 2022Hi, Slingshots Do you simply want to add alert when arrow shows up?
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 12, 2022Added LineWidth Not sure why GOLD line is not priting. I don't have that ticker so I can't confirm. I confirmed that those are in the loop - that data is read correctly.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 12, 2022I don't think you can capture two at once. However, you can capture KeyDown and next, Check Property of object to act on. This video might help - Mql4 Lesson 42 Makiing ShortCut Keys - YouTube Basically, you will capture event of KeyDown with ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 11, 2022you will do something like this. ObjectCreate(0,"L",OBJ_LABEL,0,0,0); ObjectSetText("L",T,12,"Tahoma",Yellow); ObjectSet("L",OBJPROP_CORNER,GN); ObjectSetInteger(0,"L",OBJPROP_XDISTANCE,25); ObjectSetInteger(0,"L",OBJPROP_YDISTANCE,100); ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 11, 2022Added those word to alert.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 11, 2022Use CONER_RIGHT_UPPER in your labels property. Chart Corner - Objects Constants - Constants, Enumerations and Structures - MQL4 Reference At the option, you can give like this so it can be selected. extern ENUM_BASE_CORNER corner = ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 8, 2022Didn't you want to have boxes stopped at where candle starts? before, it was all the way to the right.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 8, 2022check this out. Box should stop at Candle 0.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 8, 2022the way it is programmed, it would be almost impossible to change. It would take forever to modify as it is entirely plus/minus operation.
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 5, 2022I don't understand. This indicator is basically RSI + BB combined and give alert if RSI cross RSAMA. What do you mean by 28 pairs name added? You mean to convert this to scanner? That is not a modification but a new indicator. Unless you write a ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 4, 2022Just use TimeHour() or TimeMin() functions to convert current time into hours, min and compare. like if you want to start at 01:15 if ( TimeHour(Timecurrent()) >= 1 && TimeMinute(TimeCurrent())>=15) { do something } else { Print("It is vacation time ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 4, 2022Ah, I found what was wrong. I did make msg for output, but didn't replace old msg from previous one. Here, you should have final version. it should have Symbol name, Time Frame, and Bull/Bear , and Time
I will code your EAs and Indicators for no charge
-
BlueRain replied Jul 4, 2022I see. I didn't test out - just code change on alert. This time, I will test out and give you final version.
I will code your EAs and Indicators for no charge