@saurav007s Put a shared link here, is easier to check what's happening.
Posts made by jstap
-
RE: I need help to fix this eaposted in Questions & Answers
-
RE: Limiting the % Loss in a Dayposted in Questions & Answers
@mcvinbabas The mobile alert is a yellow block, use a once per hours block to send alert every 4 hours, I assume by DD you mean the difference between current balance and start balance, or current equity vs day start balance? either way you need to subtract current value off start value before sending, to do this save the balance into a variable at day start then you can subtract the number you want.
-
RE: About price range.posted in Questions & Answers
@gauss @RGoo I too am also interested in what the custom code is doing? I would have attacked this with a slightly different approach: https://fxdreema.com/shared/UEfpgmoXb
-
RE: Making The EA look nice? Settings block IDsposted in Questions & Answers
@nicholas86 Your welcome, for moving average int and number is all that's needed.
-
RE: Making The EA look nice? Settings block IDsposted in Questions & Answers
@nicholas86 I have never done this but you need to use this type: ENUM_APPLIED_PRICE
this in value: PRICE_TYPICAL
or possibly the value that's in the link. -
RE: Making The EA look nice? Settings block IDsposted in Questions & Answers
@nicholas86 The name is how you want input to look and help you know what's doing what, the value is whatever is needed to create the desired result type is:
bool== true/false
int == whole number like 1, 2, 3, 67, 581 etc
double == number with a decimal like 0.0, 8.7 etc
string == textthere are more but unlikely to need.
-
RE: Need Help on setting Stop Loss & Take Profit on "Buy Now"posted in Questions & Answers
@derek-cheah Every time the fractal appears you need to save the value into a variable, this means you always have the last price saved, they only show on candle 2, set this in the buy sell blocks for SL. Make a start and share a shared link saying what you can't get working and any problems can be sorted.
-
RE: About price range.posted in Questions & Answers
@gauss Do you mean the distance from high to low?
-
RE: Do on-Timer events work when chart is not ticking?posted in Questions & Answers
@vish I believe so but never tried.
-
RE: 🤔 EA is delayed because of manual tradesposted in Questions & Answers
@davidmcc If you want it to act on manually placed trades change any symbol to specific and leave manual/auto as is, a combination of these settings will depend on what you want EA to do.
-
RE: Text adjustment in the corner of the screen.posted in Questions & Answers
@ontradingx Hard to say without looking inside blocks, probably need to use X & Y position.
-
RE: 🤔 EA is delayed because of manual tradesposted in Questions & Answers
@davidmcc Do you have a no trade block checking manually opened and all symbols? If correct settings used another symbol won't affect another.
-
RE: Can someone explain what happend hereposted in Questions & Answers
@candee249 Did this close from a block? Maybe the account got into too big drawdown (due to spread) which caused your broker to close all running trades, maybe use a smaller lot size or limit the amount of trades.
-
RE: Can someone explain what happend hereposted in Questions & Answers
@candee249 I would guess this is due to spread.
-
RE: License for a real account.posted in Questions & Answers
@gbhforex Not sure about a password but add what's in the picture to the on init tab, if you want more than one account put other conditions on the yellow dots and put the terminate on the last.

-
RE: Reopen a pending after closing itposted in Questions & Answers
@meshii Use the pink for each closed trade, you can then use the group to select and get the open price with the pink in loop option.
-
RE: closing the trade after opening the candleposted in Questions & Answers
@oskars The simplest way is like picture, this will act at the open of a new candle:

-
RE: ATR pipsposted in Tutorials by Users
@rick01 Like below:
bool == true/false
double == number with a decimal, like 8.2 or 0.0, etc
int = whole number, like 1, 2, 3, etcyou also get type's like ENUM_TIMEFRAMES but you shouldn't need these.
-
RE: TDI EAposted in Questions & Answers
@valhallafx You have to add indicators in the my indicators section, the MQ file is easier than the EX but either can be used.