• 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 :)

Suggestion Currency Strength

its quiet confuse me ..
so after have 28 open order the ea will stop trade .. thats what u mean ?
Yes after one trade per pair DO NOT open another trade
So we will wait for all trades to close and then we drop it again in the chart to start trading one more time
 
When I changed the size of the transaction from 0.1 to 0.01, some of the transactions opened with 0.01 and some with 0.01.
I'm after deleting an account with real money I want to put this robot on real account if it's possible that everything will only be 0.01
my friend dont put it yet in a real account ..demo first
Im on ICMarkets and the lot sizes working fine
 
When I changed the size of the transaction from 0.1 to 0.01, some of the transactions opened with 0.01 and some with 0.01.
I'm after deleting an account with real money I want to put this robot on real account if it's possible that everything will only be 0.01
i think its about minimum lot to open orders from ur broker
try to remove this :"&& CheckVolumeValue(TradingLots,symbol)"

change line 483 with this :
if(((signal=="Buy" && !Reverse && op<cl) || (signal=="Sell" && Reverse && op>cl)))

Change line 495 with this:
if(((signal=="Sell" && !Reverse && op>cl) || (signal=="Buy" && Reverse && op<cl)))


Yes after one trade per pair DO NOT open another trade
So we will wait for all trades to close and then we drop it again in the chart to start trading one more time

did the EA already do that
i think this ea will only open one trade for every pair
but if not u can try to change this line :

change line 480 with this
if(count==0 && TradeTime)

change line 493 with this
if(count2==0 && TradeTime)
 
i think its about minimum lot to open orders from ur broker
try to remove this :"&& CheckVolumeValue(TradingLots,symbol)"

change line 483 with this :
if(((signal=="Buy" && !Reverse && op<cl) || (signal=="Sell" && Reverse && op>cl)))

Change line 495 with this:
if(((signal=="Sell" && !Reverse && op>cl) || (signal=="Buy" && Reverse && op<cl)))



did the EA already do that
i think this ea will only open one trade for every pair
but if not u can try to change this line :

change line 480 with this
if(count==0 && TradeTime)

change line 493 with this
if(count2==0 && TradeTime)


Thanks, i will check it on demo and let you know
 
i think its about minimum lot to open orders from ur broker
try to remove this :"&& CheckVolumeValue(TradingLots,symbol)"

change line 483 with this :
if(((signal=="Buy" && !Reverse && op<cl) || (signal=="Sell" && Reverse && op>cl)))

Change line 495 with this:
if(((signal=="Sell" && !Reverse && op>cl) || (signal=="Buy" && Reverse && op<cl)))




did the EA already do that
i think this ea will only open one trade for every pair
but if not u can try to change this line :

change line 480 with this
if(count==0 && TradeTime)

change line 493 with this
if(count2==0 && TradeTime)
Hmmm nope it is trading and trading without stop
 

Attachments

  • Lots of trades.jpg
    Lots of trades.jpg
    103.3 KB · Views: 116
Yes and Yes

if you change the magic number off course it will trade without stop
magic number is unique identifier to calculated opened trade by ea
if u change the magic number the ea will not recognize other trade even if the trade made by same EA
 
if you change the magic number off course it will trade without stop
magic number is unique identifier to calculated opened trade by ea
if u change the magic number the ea will not recognize other trade even if the trade made by same EA
i mean i apply to two charts ...in one chart the ea with normal trades and one magic number
and in the other chart the ea with reverse trades with a different magic number so they hedge each other and take the difference in TP
but is important to NOT trade more than ones
 
may i know the magic number ??

i already make a test for about 1 hour and it give me no double trade /pair, only one trade on one pair
 
i mean i apply to two charts ...in one chart the ea with normal trades and one magic number
and in the other chart the ea with reverse trades with a different magic number so they hedge each other and take the difference in TP
but is important to NOT trade more than ones

i try ur strategies ...
its work fine jut open 2 trade .. 1 buy and 1 sell on a pair
hedge.jpg
 

Attachments

  • hedge.jpg
    hedge.jpg
    159.1 KB · Views: 321
i try ur strategies ...
its work fine jut open 2 trade .. 1 buy and 1 sell on a pair
View attachment 115631
well if that trade finishes then you see if it trades again so in the picture below SHOULDNT see more than 2 trades per pair ..in treading report
what version are you useing? can you post?
 

Attachments

  • Image2.jpg
    Image2.jpg
    31.3 KB · Views: 74
Last edited:
i use this
yes the same as mine...but i was looking at this line

if(TradeOnce==true)
{
for(int h=OrdersHistoryTotal()-1;h>=0;h--) // Trade Once per Pair
{
if(OrderSelect(h,SELECT_BY_POS,MODE_HISTORY)==true) // select next
{
if(OrderCloseTime()>YesterdayEnd && OrderSymbol()==symbol && OrderMagicNumber()==Magic)
{
signal="NoTrade";
}
if(OrderCloseTime()>YesterdayEnd && OrderSymbol()==symbol && OrderMagicNumber()==Magic2)
{
signal="NoTrade";


isn't that to trade once?
Because it trades continuously non stop
 
I am ever trying to use indicator currency strenght meter but night different version from this
and I am felt complicated how to trade, so I leaving it and back to natural trading analysis
 
yes the same as mine...but i was looking at this line

if(TradeOnce==true)
{
for(int h=OrdersHistoryTotal()-1;h>=0;h--) // Trade Once per Pair
{
if(OrderSelect(h,SELECT_BY_POS,MODE_HISTORY)==true) // select next
{
if(OrderCloseTime()>YesterdayEnd && OrderSymbol()==symbol && OrderMagicNumber()==Magic)
{
signal="NoTrade";
}
if(OrderCloseTime()>YesterdayEnd && OrderSymbol()==symbol && OrderMagicNumber()==Magic2)
{
signal="NoTrade";


isn't that to trade once?
Because it trades continuously non stop

no .. those function job is to limit order .. 1 trade only for one pair in one day ...

i am curious about ur magic number, cos this ea use 2 magic number magic and magic2

if use for hedge, magicnumber on parameter should not be sequential
if ea on chart 1 use magicnumber 2020, try to use magicnumber 100 on chart 2 ea
 
well if that trade finishes then you see if it trades again so in the picture below SHOULDNT see more than 2 trades per pair ..in treading report
what version are you useing? can you post?

well if that trade finishes then you see if it trades again <<< yes if the trade reach TP or SL, it will close.. then if the condition for buy/sell is met it will open order again

what i mean here is ..
EA will not open more than 28 order if use on one chart
if use hedge on 2 chart .. total will not more than 56 order
 
Ok - the robot is not good.
With 0.01 there is more than $ 70 today.
Lucky I put a demo into account, before real
 
no .. those function job is to limit order .. 1 trade only for one pair in one day ...

i am curious about ur magic number, cos this ea use 2 magic number magic and magic2

if use for hedge, magicnumber on parameter should not be sequential
if ea on chart 1 use magicnumber 2020, try to use magicnumber 100 on chart 2 ea
ok ill test it buddy thanks
 
Back
Top