What is the output in the Experts tab of the Terminal subwindow when you restart MT4?Hi all, does anyone here had my same problem with Position size Calculator app? everytime I close MT4 when I reopen it I am not abale to move the entry, stop loss and take profit lines, plus I have to manually setup again the hot key, the line are blocked and I can not move them, I already unistalled the app and reinstalled it but I have always the same problem, I hope somebody can help me with that... thank you in advance
this is what I see when I restart MT4 ..What is the output in the Experts tab of the Terminal subwindow when you restart MT4?
Hm... Doesn't seem like there is a problem. And all your panel settings are reset?this is what I see when I restart MT4 ..
everytime I restart MT4, I need to load my POS settings, set again the hot key and then from Objects list I need to delete all the objects, once I did all this I can trade ... none of my settings are saved when I close MT4 basicallyHm... Doesn't seem like there is a problem. And all your panel settings are reset?
Did you try reinstall MT4? Are you on Windows or on macOS? Did you try removing all other indicators from the charts?everytime I restart MT4, I need to load my POS settings, set again the hot key and then from Objects list I need to delete all the objects, once I did all this I can trade ... none of my settings are saved when I close MT4 basically
No I didn't try to reinstall MT4, I am on MacOS, my chart is clean no indicators at all, I will try to reinstall MT4, I'll keep you update, thank you for your helpDid you try reinstall MT4? Are you on Windows or on macOS? Did you try removing all other indicators from the charts?
Could be some problem with MT4's access to its data directories. I am not sure, I don't have macOS to test anything there.No I didn't try to reinstall MT4, I am on MacOS, my chart is clean no indicators at all, I will try to reinstall MT4, I'll keep you update, thank you for your help
What do you mean? Total volume per multiple trades? Or is it a max per trade?@Enivid in TPT firm there is lot size restriction. so If you have option to set max lot sizer per instrument that will be great. I had lost the account because of the PSC took order more than 2.5 lot in a symbol. Please consider the feature.
Total volume per instrument..What do you mean? Total volume per multiple trades? Or is it a max per trade?
The best I can offer for now is to tick the Subtract open positions volume checkbox and set the Max position size field on the Script tab.Total volume per instrument..
Example If we place 2.6 lots in EURUSD we are out. (in 50K funded)
but it can splited like 1.25, 1.25 or any split method.
I tried that method. There is some problem in that method. If I change Max Position Size to 0.10 and I took risk % 0.20 for the particular stop loss it showed 0.14 lot I used script to place the order it took well (Only 0.10 order opened). At the same time If I again use the script. It takes 0.04 lots which will lead to violation..The best I can offer for now is to tick the Subtract open positions volume checkbox and set the Max position size field on the Script tab.
Yeah, you can find this line in PositionSizeCalculator.mqh:Is there any way of disabling the 'Stop Limit' order type in MT5 version of PSC? As I never use it
View attachment 20856
else if (sets.EntryType == Pending) sets.EntryType = StopLimit;
else if (sets.EntryType == Pending) sets.EntryType = Instant;
Worked perfectly @Enivid thank you!Yeah, you can find this line in PositionSizeCalculator.mqh:
and change it to:MQL5:else if (sets.EntryType == Pending) sets.EntryType = StopLimit;
MQL5:else if (sets.EntryType == Pending) sets.EntryType = Instant;