- Search Metals Mine
- 1,205 Results (1,204 Replies, 1 Comments)
-
BlueRain replied Nov 23, 2020That is a very good looking curve..
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 23, 2020Sorry, little bug on handling filters. Fixed the bug and updated. Also, updated original one too.
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 23, 2020Indi Updated V1.6 now. if this is not what you wanted, please let me know. image image Update 1: Bug fixed on filtering part.
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 23, 2020do you have this? MTF Range Calculator I would like to follow what you are talking about.
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 23, 2020Average of what? OP/C - OP/L - OP/H - TOTAL
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 22, 2020Increased max row to 5000.
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 22, 2020Motiram is correct. Max bar counted is fixed at 1000.. as I didn't see any reason to get more than 1000 bar. Maybe, I can increase numbers to larger.. but typically, one screen full of bar is around 100 - 150 and if you zoom out like max size, it ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 22, 2020BullBear PipSize is not really suitable for this generic use as it was designed to show total pip sum of BullBear trend specifically It will show how many pips before it turns trend. ( Bull/Bear trend ) For that reason, I changed a bit and added bar ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 21, 2020Please use attached. Note: In MT4, index starts from 0 and this index will print starting from 0. However, PipMoved indicator and script will print from index 1 .. because it is for human eyes . ( people are used to starting number of 1, not 0 ) ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 21, 2020Please use latest updated indicators/scripts which I have attached to previous. * Indicators: Row count added so you don't have to change NoOfPeriod even if you enable filtered time. * Script - minor fix on name of file exported to avoid dup error. ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 21, 2020Changes has been made. so, it should display fixed number of rows now even if you used filters. Please see my next updated version. if you set NoOfPeriod = 20, display would be always 20 rows. if you set NoOfPeriod = 80, display would be always 80.. ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 20, 2020Updates and new data dump scripts. Update: I have changed how it count number of rows.. so that you don't have to change NoOfPeriods any more for filters. it will print NoOfperiods rows even if filter applied. Data Dump Script: This script will get ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 20, 2020Sure. Made some changes.. to see Timeformat, enable below: input bool ShowTimeColume = true; //Show Timeformat for Candle Index to see filtered by hour and min, enable this option input bool Enable_Show_Filtered_TimeCol = true; input int ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 20, 2020Not familiar with MT5 coding as I don't use MT5. But, principle is same. Steps: 1. You will need a alert function where you will monitor * is this new candle? * is this new msg? typically, in MT4, this is done this way void doAlert(int forBar, ...
Help! Trying to make alert to ring 3 times per candle
-
BlueRain replied Nov 19, 2020Use attached one as your ref. Basically, you have to get two indexes, find highest,lowest, and draw two lines. 1. Find start Index of session ( you can use iBarShift() using time ) 2. Find end index of session ( you can use iBarShift() using ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 19, 2020Are you trying to read high of 3 days ago bar? Candle index works this way today = 0, index 1; //1 day ago index 2 ; //2 day ago index 3 => 3 days ago //read high of 3 days ago DHi = iHigh (NULL, PERIOD_D1,3); //read low of 3 days ago DHLow = ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 18, 2020I don't understand what is asking. is this "Synergy_APB Mod with MA Filter alerts 1.0"? Can you be more specific on "minor different in the calculation of the indicator"? Those ATR based TP/SL are automatically calculated based on percentage. There ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 16, 2020I added ProfitProtection Option. if you enter any amount more than 0, it will check and close position as soon as profit is more than set amount. sinput string note5_="";//-=[Profit Protection in Currency]=- input bool Enable_ProfitProtection = ...
I will code your EAs and Indicators for no charge
-
BlueRain replied Nov 16, 2020Below is where EA calcurate profit. //Get Points if(OrderType()==OP_BUY) { CloseColor=clrBlue; ClosePrice=bid; Points=(int)((ClosePrice-OrderOpenPrice())/point); } else if(OrderType()==OP_SELL) { CloseColor=clrRed; ClosePrice=ask; ...
I will code your EAs and Indicators for no charge