- Search Metals Mine
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Mar 15, 2020did look at code but looking at snippet, it might be Time[i-5] Time[0] is current bar. So, if you subtract , it is future which might not exist and will give out of range error. Check your code if some loop check current position. you shouldn't give ...
Array out of range when running indicator
-
BlueRain replied Mar 15, 2020StopLoss is set at the beginning of order placement and it should be adjusted at the time of TrailingStop. So, if you want to set StopLoss, you have to include this variable in this line. int ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 15, 2020It seems this is a commercial product sold by Artur Zas url You may ask him if he can modify its verson into 2 buffer.
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 15, 2020Sorry, You are correct. if you want to make more adjustable, ( size, and arrow , color ) -put this to global. extern int arrowSize = 2; extern int uparrowCode = 233; //up extern int dnarrowCode = 234; //down //Arrow color extern color MarkerColorUp ...
3 candle pattern
-
BlueRain replied Mar 15, 2020Decompiled code means someone has reversed engineered compiled code ( .ex4) A lot of those tool sellers get free .ex4 from forum and/or steal from commercial vender and reverse engineer using tools like EX4TOMQ4. This kind of stealing code without ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 15, 2020Best way is to get some code samples from url for getting orders, it works like this: 1. Get all the orders and 2. select each order and filter out by MODE_TRADE 3. if needed, filter by "Symbol()" to match current chart symbole 4. Process - int ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 15, 2020Fixed - Color is changeable as input. Update: Actually, there was 2 colors and I missed 2nd one. Now, Attached one is fixed for 2 colors.
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 15, 2020this code is decompiled code without any credit to original author. For that reason, I won't be able to fix this. But, if you just wanted to make that vertical line invisible, you can fix it yourself SetIndexStyle(0, DRAW_HISTOGRAM, STYLE_SOLID, 0, ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Mar 5, 2020Not sure how much I can change. I have added a bit more condition if that helps. if ( ((PreMainline<PreSignalline)&& (Mainline >= Signalline) )|| (Mainline > Signalline) ) { upB[shift]=1; loB[shift]=-1; } else if ( ( (PreMainline > PreSignalline)&& ...
Looking for Stochastic Indicator - histogram style
-
BlueRain replied Mar 5, 2020Just changed StochHistogram.mq4 a bit and it will show histogram of red/green based on mainline/signal line. Red if Main < Signal Green if Main > Signal
Looking for Stochastic Indicator - histogram style
-
BlueRain replied Mar 5, 2020you can change code PlotIndexSetInteger(0,PLOT_ARROW,159); PlotIndexSetInteger(1,PLOT_ARROW,159); to up arrow (233) and down-arrow (234) like PlotIndexSetInteger(0,PLOT_ARROW,233); PlotIndexSetInteger(1,PLOT_ARROW,234);
3 candle pattern
-
BlueRain replied Feb 15, 2020Test out this and give me some feedback if this meets your requirement. This AMA_Bands has a lot of sub-sections that does a lot of calculation. Adding this arrows might slower your chart display. This ShowArrows option will display arrow just above ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Feb 14, 2020Actually, first one uploaded was correct one. I thought I made mistake and corrected. But, turns out, first uploaded one was correct. Here I am uploading again.
I will code your EAs and Indicators for no charge
-
BlueRain replied Feb 14, 2020here it is: I copied most of those functions from TMA ATR channel Indicator.
I will code your EAs and Indicators for no charge
-
BlueRain replied Feb 6, 2020What you have are dll and ex4 files - all compiled - not possible to fix. Please provide source file if that is possible.
I will code your EAs and Indicators for no charge
-
BlueRain replied Feb 5, 2020Not my code, I just added extra TF handling. But, looking at the code, it seems pretty simple logic - find highest and lowest point of certain period and pad some distance defined by user, and draw box. like below: if(value<Bid) ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Feb 5, 2020Not sure what that means. In my MT4, I see like below.. I didn't change anything except adding H4,D1 and added a variable in where number was before. can you try this attached? It has 100 as default for TextLocationInBar. ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Feb 5, 2020Not easy to move automatically. it is easier if you set the location. Added option you can set the location of text. Default = 500
I will code your EAs and Indicators for no charge
-
BlueRain replied Feb 5, 2020Try this.. Ver#4 Bug Fix 1 - fixed alert issue ( added "else" to alert checking condition ) and added extra period separator handline for higher time frame. Update #2 - No functional change, removed a Print(xxxx) statement which was used for debug ...
Reversal Candle Concept