hi
i find it very difficult to set stop loss, because it is either hit too often or gives me a big loss.
so i want to know how people do on this.
i just want to have some ideas, discussions, inspiration. i know there is no prefect sure win system.
many thanks
- When MetaTrader 5 Web Terminal is indispensable
- Market App Store
- Articles on the development of trading applications
luckyvictor: i find it very difficult to set stop loss, because it is either hit too often or gives me a big loss.
A SL can not give you a "big loss." Only your risk can. Control your risk. Risk depends on your initial stop loss, lot size, and the value of the pair. - In code (MT4):
- You place the stop where it needs to be - where the reason for the trade is no longer valid. E.g. trading a support bounce the stop goes below the support.
- Account Balance * percent/100 = RISK = OrderLots * (|OrderOpenPrice - OrderStopLoss| * DeltaPerLot + CommissionPerLot) (Note OOP-OSL includes the SPREAD, and DeltaPerLot is usually around $10/pip but it takes account of the exchange rates of the pair vs. your account currency.)
- Do NOT use TickValue by itself - DeltaPerLot and verify that MODE_TICKVALUE is returning a value in your deposit currency, as promised by the documentation, or whether it is returning a value in the instrument's base currency.
MODE_TICKVALUE is not reliable on non-fx instruments with many brokers. - You must normalize lots properly and check against min and max.
- You must also check FreeMargin to avoid stop out
- Use a GUI EA like mine (for MT4): Indicators: 'Money Manager Graphic Tool' indicator by 'takycard' Forum - Page 6
whroeder1:
A SL can not give you a "big loss." Only your risk can. Control your risk. Risk depends on your initial stop loss, lot size, and the value of the pair.
A SL can not give you a "big loss." Only your risk can. Control your risk. Risk depends on your initial stop loss, lot size, and the value of the pair.
- In code (MT4):
- You place the stop where it needs to be - where the reason for the trade is no longer valid. E.g. trading a support bounce the stop goes below the support.
- Account Balance * percent/100 = RISK = OrderLots * (|OrderOpenPrice - OrderStopLoss| * DeltaPerLot + CommissionPerLot) (Note OOP-OSL includes the SPREAD, and DeltaPerLot is usually around $10/pip but it takes account of the exchange rates of the pair vs. your account currency.)
-
Do NOT use TickValue by itself - DeltaPerLot
and verify that MODE_TICKVALUE is returning a value in your deposit
currency, as promised by the documentation, or whether it is returning a value
in the instrument's base currency.
MODE_TICKVALUE is not reliable on non-fx instruments with many brokers. - You must normalize lots properly and check against min and max.
- You must also check FreeMargin to avoid stop out
- Use a GUI EA like mine (for MT4): Indicators: 'Money Manager Graphic Tool' indicator by 'takycard' Forum - Page 6
Appreciate for your sharing, I think you have pointed out one of my incorrect mindsets, and I should focus on risk itself.
Do you have any good recommendation for reading material of risk/money management please?
luckyvictor:
Appreciate for your sharing, I think you have pointed out one of my incorrect mindsets, and I should focus on risk itself.
Do you have any good recommendation for reading material of risk/money management please?
Money Management
The forum
- MM (money management) calculation, indicators, discussion, tools: calculate your lot size and so on. Original thread with several versions.
- MoneyManagement EA is on this thread: it shows you market information and money management on the chart.
- Forex Money Management, Part 1 - good small thread
- Useful money management expert - the thread with the EA
- Stop Your Mind From Causing You to Take Profits Too Soon - the post with the educational video
- Money Management: How to Determine an Initial Stop Level - the post with the educational video
- Why Most Traders Lose Money and The Solution - the post with the educational video
The articles
- Statistical Verification of the Labouchere Money Management System
- Functions for Money Management in an Expert Advisor
- Fallacies, Part 1: Money Management is Secondary and Not Very Important
- MQL5 Wizard: How to Create a Risk and Money Management Module
- Money Management Revisited
- Cross-Platform Expert Advisor: Money Management
- Limitless Opportunities with MetaTrader 5 and MQL5
- Money Management by Vince. Implementation as a module for MQL5 Wizard
CodeBase
- Money Management Script - script for MetaTrader 4
- Example of SAR Automated - with Advanced Money Management - expert for MetaTrader 4
- Money Manager Graphic Tool - indicator for MetaTrader 4
- Order Manage EA - expert for MetaTrader 4
- Master Tools - indicator for MetaTrader 4
============
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register