- Search Crypto Craft
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Sep 29, 2022I am sorry that I can't help on those any more. Code I added was just to find Last Year's HLOC and feed into existing code that draw lines. That drawing line part is identical to all Pivot indicators. Not sure what are those but I won't be able to ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 28, 2022Interesting. That was done many years ago to someone outside of FF, never published to FF. I totally forgot that one. I looked into what was .. and only reason there is numbers in the candle was that he wanted to see the pip size of candle ( High - ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 28, 2022Regarding color, I looked into more and it is using RGB ( Red,Green,Blue) and increase or decrease value based on timeframe and value. It seems there are 6 colors assigned based on value. if (step <= midvaidx) { if (giProfileTf == PERIOD_MN1) iclr ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 28, 2022Good to know that you found something. However, please note that those are not "Spread" but Volume profile/history. Volume information is stored in historical data and you can pull those information. Regarding box color, you have to look into Rect ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 28, 2022Maybe, i did set initial low not high enough in the loop when to find lowest price. Gold must have very high price. Try this one. Rollover is related to low price.. so it should be also fixed. (Updated ) Minor change made. No change to output.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 28, 2022Here, I have changed to Yearly It should display last years.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 28, 2022I looked into and It doesn't have condition to close at certain time. EA will only close all positions when new daily bar shows up. All those hour settings are about trading hour and when to open new trade. When conditions are met, it will close ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 25, 2022Since MT4 doesn't have TimeFrame for Year, you need to do some steps. Find Index of December candle in Monthly chart and get Close Price. Then, you will get last year's Close price. ( Basically, December's close price ) Below code is not complete.. ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 25, 2022Spread information is volatile and not stored in candle data. Only way is to collect those information as it happens and store to buffer. for later use. But, again, if you close chart, those information would be gone as it can't be calculated. I ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 25, 2022This was asked by ntk98, based on TradingView chart. Maybe you can watch video. Sometime, seeing High/Low only can give you better direction of market, and ZigZag is one example of indicator that uses high/low value.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 25, 2022HA High Low: Changes made to HA for HA High Low.: Line 44, and 46 SetIndexStyle(0,DRAW_HISTOGRAM,0,3,ExtColor1); SetIndexBuffer(0,ExtLowHighBuffer); SetIndexStyle(1,DRAW_HISTOGRAM,0,3,ExtColor2); SetIndexBuffer(1,ExtHighLowBuffer); that is showing ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 25, 2022Simply change to HA will give same effect. Two versions:
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 20, 2022Like I said, it is not possible to save to another folder due to MT4 restriction. MT4 only allow file to save to under its \Files. Your files are saved under MQL4\Files folder. What you can do is to create some short-cut to your desktop and open ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 19, 2022Because of MT4 security reason, you can't read or save file to desktop. If you do that, you will get error 5002. I have modified your file output, so, it has option to overwrite to single file now.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 17, 2022Here, fixed version attached. also, this might also help - CandleSize indicator. similar - just shows numbers.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 16, 2022Your attached file is corrupted - nothing there.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 16, 2022Hi, JohnL33 Check this my old work "click-to-call-script" indicator. url You can assign any script to this indicator and use your own label. Also, you can attach to chart as many as you want as long as you assign different uniquid ID. if that ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 15, 2022Maybe, not exactly trade by trade, but this summarize your trade P/L. You can set Open/Close positons and period of your choice.
I will code your EAs and Indicators for no charge
-
BlueRain replied Sep 15, 2022Not sure what you are looking for. Like I said complex formular find regression line - and it checks if value is within ATR_gap and if that is swing low or high. double ATR_Gap = 0.6 * iATR(Symbol(), 0, 50, 1); this is the formula it sets dot on ...
I will code your EAs and Indicators for no charge