• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

100 % signal forex

TRADE OF THE NEXT WEEK
GBP/USD
BUY if 1.301182 hitted ; then take profit 1.303698
SELL if 1.298976 hitted ; then take profit 1.296835
eb66fa8c0a2bcc6b1d7fbd36612fb896.png
 
Жаль, но по золоту на прошлой неделе ничего хорошего не получилось.
3.png
 

Attachments

  • 3.png
    3.png
    49.6 KB · Views: 16
Жаль, но по золоту на прошлой неделе ничего хорошего не получилось.
View attachment 105143
Вы всегда должны делать стоп-лосс, если рынок разворачивается, но если один сигнал из 5 выигрышных сигналов не вызывает проблем, пожалуйста, имейте в виду, что мы запускаем 6 сигналов в неделю, поэтому не вкладывайте все свои деньги в одну сделку, если вы торгуете с 500 $, тогда идите Ener с 0,01 от первой торговли
 
Here is my latest entry bot. In default there are the actual prices and 0.1 lots. Just attach it to a usdcad chart.

IMPORTANT: Please test it with strategy tester in visible mode first! IN ANY CASES I do not take responsibility for losses caused by the use of my ea!
hello Mkowa,

thanks for your excellent EA
Here is my latest entry bot. In default there are the actual prices and 0.1 lots. Just attach it to a usdcad chart.

IMPORTANT: Please test it with strategy tester in visible mode first! IN ANY CASES I do not take responsibility for losses caused by the use of my ea!


Thank you for this great contribution, please help me to know if I am correct in the management of this EA:

1) If MA_Period = 0 only the BuyBorder and SellBorder and TP levels work, correct?

If I understand correctly: I must attach the EA to the graph and initially configure the levels before giving acceptance, when I give ok the EA will open the pending orders with their respective TP, correct?

Should the price close above the level stipulated in the 4-hour chart, will the pending order be executed (when closing the candle) as a market order?

and in that case the other pending order will change its lots twice?


2) If MA_Period is greater than 0 then ...... how it work?


3) global parameters, what are they for?
PauseBars
StopLoss
Richtung
MagicMA
 
1) If MA_Period = 0 only the BuyBorder and SellBorder and TP levels work, correct?
correct.
If I understand correctly: I must attach the EA to the graph and initially configure the levels before giving acceptance, when I give ok the EA will open the pending orders with their respective TP, correct?
It will open market orders at the beginning of the new bar.
Should the price close above the level stipulated in the 4-hour chart, will the pending order be executed (when closing the candle) as a market order?
and in that case the other pending order will change its lots twice?
It will not open the new orders. You will have to do it on your own. Sorry.
2) If MA_Period is greater than 0 then ...... how it work?
It will open orders according to the MA (price higher or lower the MA)
Code:
  double MA = iMA(NULL,0,MA_Period,0,MODE_SMA,PRICE_CLOSE,0);
  Comment (MA);

  if (Close[1] > MA && Bid > MA)
  {
    Auftrag(Richtung,"monf");
  }

  if (Close[1] < MA && Ask < MA)
  {
    Auftrag(-Richtung,"monf");
  }
3) global parameters, what are they for?
PauseBars
How many bars to wait before trading again.
StopLoss
Richtung
"StopLoss" as itself
"Richtung": 1 - normal trade, -1 - reverse trade
magic number
 
correct.

It will open market orders at the beginning of the new bar.

It will not open the new orders. You will have to do it on your own. Sorry.

It will open orders according to the MA (price higher or lower the MA)
Code:
  double MA = iMA(NULL,0,MA_Period,0,MODE_SMA,PRICE_CLOSE,0);
  Comment (MA);

  if (Close[1] > MA && Bid > MA)
  {
    Auftrag(Richtung,"monf");
  }

  if (Close[1] < MA && Ask < MA)
  {
    Auftrag(-Richtung,"monf");
  }

How many bars to wait before trading again.

"StopLoss" as itself
"Richtung": 1 - normal trade, -1 - reverse trade

magic number
thank you, good job

Should I assume that if the candle (the price) exceeds (in the case of a purchase) the expected level but then returns and closes below that level, the order will not be executed?
 
thank you, good job
Should I assume that if the candle (the price) exceeds (in the case of a purchase) the expected level but then returns and closes below that level, the order will not be executed?

PHP:
if (iClose(NULL,240,1) > BuyBorder && Bid > BuyBorder)
  {
    Auftrag(Richtung,"monf");
  }

If the close of the last H4 candle is above the buy level and the actual price (after closing the last candle) is also above the buy level then the EA opens a buy market order. So if I got your question right: Yes!
 
TRADE OF THE NEXT WEEK

XAU/USD GOLD

BUY if 1512.710695 hitted ; then take profit 1517.576471

SELL if 1507.84492 hitted ; then take profit 1501.897861
c1fb23ef976e4d95c9b26c4d43f92eff.png
 
Oh!
Dear naveen verma : The last hour you spammed this forum 27 times! Stooopp!!

Reported.

(Joined 4 years ago, posted 31 messages, 87% of them are today's spams!)
 
Last edited:
[Цитата= "monfleri, сообщение: 366039, участник: 13119"] золото сделано
feca1949e780f0b94c26dfe2fd040e52.png
[/ЦИТАТА]
Отличный Новогодний подарок! Спасибо Monfleri!
 
[Цитата= "monfleri, сообщение: 366039, участник: 13119"] золото сделано
feca1949e780f0b94c26dfe2fd040e52.png
[/ЦИТАТА]
Отличный Новогодний подарок! Спасибо Monfleri!
добро пожаловать и с новым годом
 
TRADE OF THE NEXT WEEK
XAU/USD GOLD
BUY if 1552.991743 hitted ; then take profit 1556.734862
SELL if 1549.248624 hitted ; then take profit 1544.101835
1a260f45eb7cccb782de71c7c04ba9ba.png
 
Back
Top