- plots both accelerator and awesome oscillators as lines
- option to plot when both are above or below 0, or both slopes are same
- plots arrows n it's subwindow, optional arrows on chart
- full alerts
Attached File(s)
3
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} Accelerator_n_Awesome_Oscillator_v1.1 - plots both accelerator and awesome oscillators as lines - option to plot when both are above or below 0, or both slopes are same - plots arrows n it's subwindow, optional arrows on chart - full alerts {image} {file}Ignored
Disliked{quote} Options added for rectangle color whether last candle close is above/below the open of the first candle. {file} {image}Ignored
Disliked{quote} Hey Guy, here it is :-) You have an extern Variable (breakoutpunkt) where you can chose how many bars you want to over / under-top (in your example 20)... do you like it? Greetz andi {file}Ignored
Disliked@jeanlouie i wanna skip first oversold and overbought bar arrow if second bar overboand oversold arrow should be appear . Thanks {image}Ignored
Disliked{quote} Thank you for the indicator could you anchor two equidistant channels to the open candle open price and the forward candles high and low so that they move with price{image} and leave the adjustable line free so that we can move it manually{image} lines a to b move with price, lines c to d we can move manually but are always parallel to ab Cheers Eamonn.Ignored
Disliked{quote} You can just draw the arrow on the most recent signal, so there's only 1 signal per up/dn on the chart, or remove any close enough signal when a new signal appears.Ignored
Disliked{quote} Hello, i was hoping you can help me modify these indicators so that an arrow can be on the first entry signal and remains on the candle and does not chnage or disapear, even though the indicator signal will continue to repaint....thanks so much for all your help {file} {file}Ignored
Disliked{quote} Consider contacting the authors of the other indicator. I've only added arrows on a new histogram color, in it's subwindow, they will stay whilst things repaint. You can change the arrow symbols. {file} {image}Ignored
Disliked{quote} Consider contacting the authors of the other indicator. I've only added arrows on a new histogram color, in it's subwindow, they will stay whilst things repaint. You can change the arrow symbols. {file} {image}Ignored
DislikedGOOd day every one. pls i need your help. been on this for weeks..... pls i just need a developer in the house to fix all the errors for me in the mql5 indicator below or just turn the below mq4 indicator to mq5 with out errorrs i know nothing about mql5 languauge.....thanks. thanks thanks. with all my mind and soul thanks in advance!!!!!{file} {file}Ignored
Disliked{quote} // input variables int mnBUY=10; // Magic Number for BUY Trades int mnSEL=20; // Magic Number for SELL Trades datetime bOpTm=0, sOpTm=0; double bOpPx=0, sOpPx=0; string symbol=_Symbol; for(int i=OrdersTotal()-1; i>=0; i--) { if(OrderSelect(i,SELECT_BY_POS) && OrderSymbol()==symbol) { if(OrderMagicNumber()==mnBUY) { bOpTm=OrderOpenTime(); bOpPx=OrderOpenPrice(); } if(OrderMagicNumber()==mnSEL) { sOpTm=OrderOpenTime(); sOpPx=OrderOpenPrice(); } } }Ignored
for(int i=OrdersTotal()-1; i>=0; i--) {
if(OrderSelect(i,SELECT_BY_POS) && OrderSymbol()==symbol) {
if(OrderMagicNumber()==mnBUY) {
bOpTm=OrderOpenTime();
bOpPx=OrderOpenPrice();}
if(OrderMagicNumber()==mnSEL) {
sOpTm=OrderOpenTime();
sOpPx=OrderOpenPrice();}}}
if(OrderMagicNumber()==mnBUY) {Alert(symbol+" BUY Time/Px : "+TimeToStr(bOpTm)+" / "+DoubleToStr(bOpPx,5))}
if(OrderMagicNumber()==mnSEL) {Alert(symbol+" SEL Time/Px : "+TimeToStr(sOpTm)+" / "+DoubleToStr(sOpPx,5))} Disliked{quote} as eess pointed out those objects are meant to be stuck on time-price coords, not window xy coords. I've never heard of someone wanting this feature or even seen it, so it got me thinking about it. Objects_stationary - time-price objects fixed to xy position, and not subject to time/price scaling or time/price changes - trendline, trendline by angle, horizontal line, vertical line, rectangle, circle/ellipse, triangle, channel, arrow up/down, check/cross - basic styling - clear all button - the panel can be vertical or horizontal on any chart...Ignored
Disliked{quote} Hi BestTraderEv, I ran your codes and created 2 alerts as follows :- for(int i=OrdersTotal()-1; i>=0; i--) { if(OrderSelect(i,SELECT_BY_POS) && OrderSymbol()==symbol) { if(OrderMagicNumber()==mnBUY) { bOpTm=OrderOpenTime(); bOpPx=OrderOpenPrice();} if(OrderMagicNumber()==mnSEL) { sOpTm=OrderOpenTime(); sOpPx=OrderOpenPrice();}}} if(OrderMagicNumber()==mnBUY) {Alert(symbol+" BUY Time/Px : "+TimeToStr(bOpTm)+" / "+DoubleToStr(bOpPx,5))} if(OrderMagicNumber()==mnSEL) {Alert(symbol+" SEL Time/Px : "+TimeToStr(sOpTm)+" / "+DoubleToStr(sOpPx,5))}...Ignored
for(int i=OrdersTotal()-1; i>=0; i--) {
if(OrderSelect(i,SELECT_BY_POS) && OrderSymbol()==symbol) {
if(OrderMagicNumber()==mnBUY) {
bOpTm=OrderOpenTime();
bOpPx=OrderOpenPrice();
Alert(symbol+" BUY Time/Px : "+TimeToStr(bOpTm)+" / "+DoubleToStr(bOpPx,5));}
if(OrderMagicNumber()==mnSEL) {
sOpTm=OrderOpenTime();
sOpPx=OrderOpenPrice();
Alert(symbol+" SEL Time/Px : "+TimeToStr(sOpTm)+" / "+DoubleToStr(sOpPx,5));}}}