Yes but change the group settings, or/and the used symbols

Posts made by jstap
-
RE: hedge strategyposted in Questions & Answers
-
RE: Hammer EA no sell positions backtestingposted in Questions & Answers
They both look the same to me, and all candle 1 so looks like it should work
-
RE: hedge strategyposted in Questions & Answers
No, because otherwise, I will spend all day creating robots for people. But if you make the changes, test and add the new shared link, I will show what seems to be wrong (I find this helps people learn)
-
RE: Hammer EA no sell positions backtestingposted in Questions & Answers
Add a shared link: project screen - projects - open in web browser - copy link and place here
-
RE: hedge strategyposted in Questions & Answers
In the picture is the group, you need to set this to how the trade was placed. Not all blocks need to be connected, the two for trail should be separate, as well as any jobs tat do not rely on another job
-
RE: Total unrealized profitposted in Questions & Answers
Check profit unrealised - close all, use all symbols in relevent blocks
-
RE: hedge strategyposted in Questions & Answers
Have you changed the group and does it do as you need? 7b& 5 should be in a separate tree
-
RE: I need understand from Expert about check type (last loser)posted in Questions & Answers
I think these groups will be checked il all blocks using these numbers, so block 1 will check all, and might activate on group 3, then block 2 will check all 4 but activate on group 1, causing a miss match to used groups. to stop this you would have to loop through changing the group every loop so all blocks use the same group.
-
RE: hedge strategyposted in Questions & Answers
By saying I meant exactly what section is not doing what you expect. For group you will need to select the trade this is working with (in all blocks):

-
RE: buy pending order not work on demo accountposted in Questions & Answers
Demo or live makes no difference, but on chart doesn't work in backtesting, so that bot will need changing to work on backtest.
-
RE: buy pending order not work on demo accountposted in Questions & Answers
Why do you not just place the buy on chart instead of setting the bool variable?
-
RE: Pending orderposted in Questions & Answers
You need to create the bool variable (with the same name). as this is is, if indicator appears, check bool value, if correct move on and check the next condition, if all is correct place pending:

-
RE: close trade at a specific timeposted in Questions & Answers
No problem, how will depend on your setup, if it doesn't work for you add a shared link, and say what's not working
-
RE: hedge strategyposted in Questions & Answers
It depends on your needs, create the project, then add a shared link saying what you are trying to do
-
RE: How can I set NY time as default in my EA?posted in Questions & Answers
1st you need to ascertain the time you want to use, right now it is GMT+5, but in the winter it would be +4.
This should give you the current time in NY, save it into a variable (using text code input)
TimeToString(TimeGMT()+18000,TIME_MINUTES )
the same principle can be used to convert from most times, but you need to know the difference.
Something like this should do it, but you will have to decide the seconds. I haven't tested
TimeToString(StringToTime("15:30") + 18000, TIME_MINUTES); -
RE: How can I set NY time as default in my EA?posted in Questions & Answers
15 minute candles form every 15 minutes so 00:00 00:15 00:30 etc, so to check 00:00 you would need to check at 00:15, this is why you need to use time, converter to match broker time