- Search Metals Mine
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Apr 18, 2020LineStyle added as option. Default is Dashed.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 18, 2020Alerts added. smFisherTransform3 doesn't have easy way to do Barshift. Update 1: Minor change. Added #property strict so it shows comment on the inputs like pic shown. No functionality impacted.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 18, 2020Sorry, not able to help on Decompiled code.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 17, 2020Please check this out - XpipBarColor. this will color each candle if bigger than certain pip size. Also, option to draw box, write pip size on the candle, and alerts ( including push ). if you don't want to set pipsize manually, you can set ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 16, 2020Is this Joke? Is this really simple EA when you have 1500 indicator?
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 16, 2020Get latest uploaded as I have added a couple of lines to delete stat lines.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 16, 2020Here you have it. Update 1: type fixed on object name. Update 2: It seems original code doesn't delete stat lines even if indicator is removed. Just added objectdelete to delete 2 stats.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 15, 2020Here is 2bar method indicator you requested.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 15, 2020Yes. I mean y2bar which has bar index. typo.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 14, 2020Thanks Classy, I will let you know after few changes made - mainly to detect how fast/how far it drops from top. Currently, it checks candle pattern but I wanted to change using some formular like ATR or ROC.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 14, 2020//this returns index of higest int y2bar= iHighest(NULL,PERIOD_H1,MODE_HIGH,80,1); //this returns value of highest double y2= iHigh(NULL,PERIOD_H1,y2bar);// value of the highest bar //you just need to subtract bar index to get how far... int x2= ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 13, 2020Not sure if this will help but I added WindowRedraw(); at the end which typically works when object gets new properties and force refresh. Try out if this helps.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 13, 2020I am sorry that it won't be much different.. also, currently it is not gets smaller. I thought about implementing but decided not to. As is current design, getting smaller when it is filled will require a lot of loops every time there is tick and it ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 13, 2020I don't know. I checked my MT4 chart and it doesn't show any issue. I didn't change a thing in how it works, just added two lines and assigned variable so that you can change color,size, etc.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 12, 2020it seems it is checking current bar High and Low value on every thick. So, it will repaint to provide latest result. If you want only closed bar check, code needs to be modified.
Reversal Candle Concept
-
BlueRain replied Apr 12, 2020Yes. It just mean 6 bars to the left.
mql - Need help with some code again
-
BlueRain replied Apr 12, 2020I just checked and it has option to disable line and enable as solid box.
I will code your EAs and Indicators for no charge
-
BlueRain replied Apr 12, 2020Let me rephrase.. missing data, not bar. By default, MT4 displays only available data on the chart. so, even if you have missing time/data.. you won't notice.. you will feel there is no missing hole. There was no trading on 1/1 so it won't have ...
mql - Need help with some code again
-
BlueRain replied Apr 12, 2020More likely, those are from missing bar as there was no trading data. time[i] returns time of that bar. Maybe, you can add some condition so it can draw this to next day or first trading day. I just checked internet and there is some topic url
mql - Need help with some code again
-
BlueRain replied Apr 12, 2020Maybe, providing whole code would be easier to understand. When I gave sample, it was for reference so you can use as template but in need of change few things. This would be code for you. #property copyright "" #property link "" #property ...
mql - Need help with some code again