singal from trading view to mt5
-
Hi i have a question
So i created and ea in fxdreema that when i place a manual trade , he continue the strategy until it hits tp , so the problem that i have now i want to do the next , i use an ea to recive signals from trading view to mt5 and opens orders , the thing is now that the EA from fxdreema it doesnt detects that trades so he can continue the strategy , it only detects the one that i make manually , how i can fix that ?
here i attach the fxdreema strategy maybe someone has an ideea. -
Regrading the Group Mode item in the block Position Created, have you tried changing it to All?
-
yes i tried and also it doenst read the order from trading view
-
@danyz1989
So strange! -
when the EA that opens the trade from TW to MT5 i have a long magic number it can be because of that ?
-
I don't think so, as the group mode All means any other stuff doesn't matter. I often used it to control the total profit/loss no matter the trades were opened by EA or by hand.
-
yea.. i have 4h sience i tried all the blocks in all orders and no succes
-
i tried also with another EA to send the signal to mt5 and still doesnt work
-
Hello guys can someone help me ?
-
@danyz1989 You said, "...EA from fxdreema it doesnt detects" the problem must be in the onTick field of trading signals, or is the ontick field empty as in the example you shared?
-
hey , so i have pine script wich sends signal from Trading view to mt5 -> it opens position-> and it should put (the ea that i created ) a pending order with TP and SL , but it only puts it if i press the buy/sell
-
@danyz1989 In this case, should we understand that you have made group mappings between trading's Pine script and the EA you created in fxdreema?
The pine script that I know does not have magic number and group matching, why don't you aim to ensure integrity by taking your signal code in the pine script to the ontick tab?
-
@PhiLykia , i tried also on , ontick and still do the same, you mean to create the signal with fxdreema ? is a complex indicator on trading view that i can't put it on fxdreema , and what i want to do is = i get signal from tradingview -> it opens trade -> and from there the EA fxdreema manage the trade.
-
i mean pineconnector not pinescript , sorry and it has a magic number
-
@danyz1989 (it doesn't matter though. pineconnector runs a pinescript.) magic number ok, so group name/number, does it match? Did you sync using "strategy.group()" included in Pinescript?
// Open Order
if condition
strategy.entry("Buy", strategy.long)
if bar_index % 2 == 0
strategy.group("Buy", group1) // Add Group 1
else
strategy.group("Buy", group2) // Add Group 2 -
its and indicator that sends the alert to the mt5 , i figure out how to do it , i have to choose the first box in fxdreema at GROUP - All manual and automated , but the thing now is i cant close the pending order if the prediction from trading view is correct ,
-
@danyz1989
That's what I said: change group mode to ALL.What do you mean "cant close the pending order if the prediction from trading view is correct"