Disliked{quote} It would be possible theoretically, but I don't think anybody wants to go through that much trouble for something as useless as those tick volumes.Ignored
Attached File(s)
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
Disliked{quote} It would be possible theoretically, but I don't think anybody wants to go through that much trouble for something as useless as those tick volumes.Ignored
Disliked{quote} If its not too much please,, attached is the actual im trying to pull out practically . Its just a simple trading system and it matters not if its a ranging market or a trending one, because we aren't riding trends, we're just dealing with 2 candles to make some easy gains. Simply wait for a bull candle and see if the next candle forms bullish, by say 5pips and you can enter for a 10-20pip target, stoploss at the low of the previous one. If the candle is bull and the next one isn;t forming bullish, its a no trade.Best times to trade...
Ignored
Disliked{quote} What you are showing here is opposite what you wrote before, and what BlueRain and myself understood. You wanted two candles in direction + a distance from Close of the last candle in the same direction (continuation). Here you are showing two candles in direction and price goes opposite (reversal).Ignored
Disliked{quote} If its not too much please,, attached is the actual im trying to pull out practically . Its just a simple trading system and it matters not if its a ranging market or a trending one, because we aren't riding trends, we're just dealing with 2 candles to make some easy gains. Simply wait for a bull candle and see if the next candle forms bullish, by say 5pips and you can enter for a 10-20pip target, stoploss at the low of the previous one. If the candle is bull and the next one isn;t forming bullish, its a no trade.Best times to trade...
Ignored
Disliked{quote} Yes, you right, if it is possible to integrate useless tick volumes and reflect them above the price, then I’m even ready to pay for the indicator, but not just like it was done in this case, because this indicator stupidly copies the movement of the lower one and is not attached to the price! {file} {image}Ignored
Disliked{quote} Sorry for confusion guy's but i don’t know how to describe it clearly, but all I need is to display the tick volume indicator build in MT4 only in the upper part of the chart above the price and that’s it, if you have any ideas and is it even possible to do this, I would be appreciate for your help, really !Ignored
Disliked{quote} Reading your first post, that's exactly what I would've done. I don't understand your complains??? What else can be done than to "copy" what is normally shown at the bottom? There are no other volumes available. The functions to get the tick volumes are: Volume[index]; or iVolume(_Symbol,_Period,index); And, how do we "attach volumes to the price"? Can you show us, draw manually perhaps, what your idea of the picture is?Ignored
Disliked{quote} Yes, and that's what BlueRain's and mine indicators are showing. So, what do you want, exactly??? {image} The 5 Pips away entry price will show when this conditon is met. But, that's on a live, moving price, so it can show and then disappear. If you want, it can be fixed at that distance.Ignored
Disliked{quote} Thanks so much Best its okay now i eventually got the hang of it.Ignored
Disliked{quote} Thanks so much Best its okay now i eventually got the hang of it.Ignored
Disliked{quote} bro no complaints at all, thank you very much for any of your answers, I just wanted to know if it is possible to make a tick volume indicator independent from the lower mt4 terminal and reflect it in the upper part of the chart, something like this!Ignored
Disliked{quote} I added SL and TP lines options. {file} So, now you have two ways of plotting the Away and Move Lines, plus an option to plot SL and TP lines. SL can be plotted as Candle High/Low +/- Offset, or as a fixed points distance. TP is plotted by a fixed points distance. The distances are calculated from the Away line. {image} If further development is needed, we can modify or add setup conditions.Ignored
Disliked{quote} bro no complaints at all, thank you very much for any of your answers, I just wanted to know if it is possible to make a tick volume indicator independent from the lower mt4 terminal and reflect it in the upper part of the chart, something like this!Ignored
Disliked{quote} And finally Best i need you assistance in reshaping the outlook display of the attched superb one done for me last year past by you working fine too i just want to know if its possible to just make all the other past lines disappear only to display just one single line indicating the target of the current price direction This is to make the chart clean from lines of the past. So if the attached arrow pop a signal and the line appears it should only be that line until another opportunity comes around. The indicator 2x5 contains the horizontal...Ignored
Disliked{quote} You are not using iHigh and iLow correctly - look at the documentation https://docs.mql4.com/series/ihigh //double _BOX_H = iHigh(_Symbol,DailyBoxHour,DailyBoxMinute); // Original code - your code double _BOX_H = iHigh(_Symbol,_Period,inpBOX_HLBarToTest); //double _BOX_L = iLow(_Symbol,DailyBoxHour,DailyBoxMinute); // Original code - your code double _BOX_L = iLow(_Symbol,_Period,inpBOX_HLBarToTest); double _clNow = iClose(_Symbol,_Period,inpBOX_HLBarToTest); double _clPrv = iClose(_Symbol,_Period,inpBOX_HLBarToTest+1);Ignored
Disliked{quote} {quote} IOW: datetime some_time=D'2004.03.21 12:00'; int shift=iBarShift("EURUSD",PERIOD_M1,some_time); Print("index of the bar for the time ",TimeToStr(some_time)," is ",shift); So you need to translate your int hours and minutes inputs to datetime. It's better to use: input string hours = "00:00"; // then datetime some_time = StringToTime(hours,TIME_DATE|TIME_MINUTES); int shift=iBarShift("EURUSD",PERIOD_M1,some_time); Print("index of the bar for the time ",TimeToStr(some_time)," is ",shift);Ignored
DislikedThanks again BTE but I have no clue where to insert your snipped. Copy all to replace my code at the same place? Or different sections? datetime some_time=D'2004.03.21 12:00 // for daily use can be 12:00 alone or must be the full date? kindly excuse the old man {quote}Ignored