• Home
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • User/Email: Password:
  • 7:50am
Menu
  • Forums
  • Trades
  • News
  • Calendar
  • Market
  • Brokers
  • Login
  • Join
  • 7:50am
Sister Sites
  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Options

Bookmark Thread

First Page First Unread Last Page Last Post

Print Thread

Similar Threads

Alternative Trade Management/Money Management Methods 1 reply

Money Management / Risk Management 24 replies

Your thoughts on money management and 'Trader discretion'? 2 replies

DmitryFX's trading experiments 20 replies

Some Practical Thoughts About Money Management , by Chuck LeBeau 0 replies

  • Trading Discussion
  • /
  • Reply to Thread
  • Subscribe
Tags: Thoughts/Thought Experiments on Money Management and Trading
Cancel

Thoughts/Thought Experiments on Money Management and Trading

  • Post #1
  • Quote
  • First Post: Nov 5, 2013 10:05am Nov 5, 2013 10:05am
  •  bg_sunny
  • | Joined May 2013 | Status: Member | 393 Posts
How would you explain to someone how to trade without using the word "because"?

Where can mathematics be applied and where is it better to stay fuzzy?

I have my thoughts running around in my head and I hope I can clarify them by writing it all down.

The Market seems to be almost completely random with no trustworthy patterns and I would like to go a different way about trading than I used to before.
I'd like to focus on what to not trade. The other side of the spectrum. I want the the dis-confirmation as far as possible and then be left with tradable opportunities. Maths and numbers will only be applied to money-management and even there they will stay very simple.

How do I see money management:

I define one unit which I am ready to risk and then I don't change the value of it. It may be 1% of the deposit or more or less, but the second trade I take will have the same dollar/euro/swiss franc etc value as the first one.
From then one I go for an average of RRR 1:3 and play the big numbers game.

Why the fixed amount? Because I have no clue how many trades in a row will be losers.
So let's play:
0.5 cent of 100 EUR will allow me to have 200 losing trades in a row before the account is empty.
The aim is: 30 Winners out of 100 Trades.
The (only) math behind it: 30*(+3) = 90 Units won and 70*(-1)= -70 Units that I lose. Grand total 20 Units won.
For simplicity reasons I left out the spread I pay to my beloved broker

That means that I expect to have 60 Winners for my possible 200 trades. But as I don't know when they will appear I prefer to have a big number to play with.

End of the math.

Now the trading.

I don't know anything about it.
Two ways to handle this:
Top down or Bottom up.

Top down: Read a whole bunch of books, visit seminars
Bottom up: Make as many mistakes as possible. Imitate. Learn from the older traders.

Can we please post as many "bad setups" as possible?
Only one rule: Trade ideas before the fact. Not the "I-entered-here-although-I-should have-exited-at-this-or-that-point" kind of trade.
I consider this to be mental masturbation.
I don't want prediction, because we cannot.
No go hard go fast rules, no cookie cutter clean setups.

What would be nice is to list all bad setups and be left with a category of trades where on could say:
"It seems like you could enter somewhere here and give it a shot up to down there/up there."
And anyways no stress we need a 30/100 hit rate .

No justification, just go with the flow, no indicators needed, no financial concepts, no interpretation of news.
And once a trade is over I will not look for a pattern. The idea is to develop intuition for the market.
I allow myself one comparison. Reading humans: There might be some predictive power in behavioral patterns, but the variables (nationality, social background, state of mind that specific day, actual health state, sleep, hunger, etc), which make it almost random. Just like markets. And if you can read people, you probably cannot teach it, because anyways you learned it by trying over and over again. (I work as a receptionist in more than 200 room hotel, trust me you cannot teach that with much certainty). But my intuition is pretty good, sometimes I am faster at guessing how the person in front of me feels like, before he/she finds a way to express it (words, facial expressions...). But I am sometimes PLAIN WRONG!!! All that I can do then is adapt my behavior, do more, do less, or I don't know.

The last trade was good because - we don't know, because... well we don't know.
If you don't believe in this uncertainty try to forecast where the price is going to be in 1 day? Can't? Try then 1 hour ahead. Can't? Try 1 minute ahead? Still can't? Try 10 seconds ahead? Notice something? What ever time frame you chose, you don't know what is behind a move.
And if you did in fact hit a right number, forecast correctly another 100.000 times and you will fail. We all get lucky sometimes, but an RRR of 1:3 or even 1:15 is not enough to wipe out positively all that errors.

Could we get together and gather some ways to develop an intuition for the market? Get a feeling for it? A way o feel the market? The same way kids learn?
Not "read the market" but feel it?
Demo only
  • Post #2
  • Quote
  • Nov 8, 2013 6:46pm Nov 8, 2013 6:46pm
  •  Benevolent
  • Joined Mar 2010 | Status: Member | 173 Posts
I look at managing the FX markets no different than running a retail store. If I perceive value of an instrument (let's say Bananas) at $1.00 a bushel, I will continue to buy bananas below that price as long as my perception of value stays the same. I approach the markets in the same manner....If the EURUSD (this is just an example) is perceived at $1.00, it would make sense from a business standpoint to sell above this perception, and buy below. Money management then follow suit. My rule of thumb is fairly simple: Use $0.01 units per $100 in the account. If price gives better opportunities (improving cost basis), then continue using that same unit size. This is how I manage 'inventory'.

Hope it helps.
 
 
  • Post #3
  • Quote
  • Nov 11, 2013 12:54pm Nov 11, 2013 12:54pm
  •  Darwin-FX
  • | Commercial Member | Joined Oct 2013 | 305 Posts
Inserted Code
lot  = (risk_factor / 100.0 * AccountEquity());
lot /= (MarketInfo(Symbol(), MODE_LOTSIZE) * iATR(Symbol(), PERIOD_D1, 14, 0));

I use this formula to determine my traded lots. It has all inside that you need, your account's equity, your desired risks and volatility
Make risk_factor a int between 1-10 (1 = small risks).

Despite the fact that this is a very easy way, it is quite successfull compared to a simple "risk x% of my account"-method

-Darwin
 
 
  • Post #4
  • Quote
  • Nov 11, 2013 7:10pm Nov 11, 2013 7:10pm
  •  FerruFx
  • Joined May 2007 | Status: MT4/MT5 EAs/Indicators/Alerts coder | 6,430 Posts
Quoting Darwin-FX
Disliked
lot = (risk_factor / 100.0 * AccountEquity()); lot /= (MarketInfo(Symbol(), MODE_LOTSIZE) * iATR(Symbol(), PERIOD_D1, 14, 0)); I use this formula to determine my traded lots. It has all inside that you need, your account's equity, your desired risks and volatility Make risk_factor a int between 1-10 (1 = small risks). Despite the fact that this is a very easy way, it is quite successfull compared to a simple "risk x% of my account"-method -Darwin
Ignored
Usually a RISK is what you are willing to lose at maximum. So the formula should include your SL ...
MT4/MT5 EAs/Indicators/Alerts coder
 
 
  • Post #5
  • Quote
  • Nov 11, 2013 7:23pm Nov 11, 2013 7:23pm
  •  Turveyd
  • | Membership Revoked | Joined Aug 2006 | 11,977 Posts
Standard bad setup, we all take again and again and again, if the market is going UP don't try to pick a top and short it, if you can not do that 1 thing then you'll be okay.

If you've got the balls to jump in Long then you'll do more than okay.
Nothing to it, but to do it!!! Stick to the plan FOOL!!!!
 
 
  • Post #6
  • Quote
  • Nov 12, 2013 3:48am Nov 12, 2013 3:48am
  •  Darwin-FX
  • | Commercial Member | Joined Oct 2013 | 305 Posts
Quoting FerruFx
Disliked
{quote} Usually a RISK is what you are willing to lose at maximum. So the formula should include your SL ...
Ignored
Who says that risk is defined by the max % you want to risk when hitting the sl?
Tough, you are right, might be a good idea to include it. But this formula works quite well
 
 
  • Post #7
  • Quote
  • Nov 12, 2013 3:53am Nov 12, 2013 3:53am
  •  FerruFx
  • Joined May 2007 | Status: MT4/MT5 EAs/Indicators/Alerts coder | 6,430 Posts
Quoting Darwin-FX
Disliked
{quote} Who says that risk is defined by the max % you want to risk when hitting the sl?
Ignored
Thought that the word "risk" was self explanatory ...
MT4/MT5 EAs/Indicators/Alerts coder
 
 
  • Post #8
  • Quote
  • Nov 12, 2013 4:39am Nov 12, 2013 4:39am
  •  Darwin-FX
  • | Commercial Member | Joined Oct 2013 | 305 Posts
Don't get me wrong, risk should always define the amount of money one wants to risk per trade, but does it necessarily mean "% of account"?

-Darwin
 
 
  • Post #9
  • Quote
  • Nov 12, 2013 4:57am Nov 12, 2013 4:57am
  •  FerruFx
  • Joined May 2007 | Status: MT4/MT5 EAs/Indicators/Alerts coder | 6,430 Posts
Quoting Darwin-FX
Disliked
Don't get me wrong, risk should always define the amount of money one wants to risk per trade, but does it necessarily mean "% of account"? -Darwin
Ignored
Risk can be a % or an amount or whatever. In any case, the result is the max you're allowing your position to take in your pocket!
MT4/MT5 EAs/Indicators/Alerts coder
 
 
  • Post #10
  • Quote
  • Nov 12, 2013 5:54am Nov 12, 2013 5:54am
  •  posi2go
  • | Joined Oct 2013 | Status: Member | 10 Posts
My friend, to be a successful trader, you have to face the reality of the trading business. To succeed You need 1. A Good Trading plan. 2. Discipline 3. Focus. Don't throw your ego into the mix. And if you can get your head and money management right you will discover that you can make money with a simple moving average and nothing else. Good luck.
 
 
  • Post #11
  • Quote
  • Last Post: Nov 12, 2013 7:54am Nov 12, 2013 7:54am
  •  Forexgogo
  • | Joined Feb 2010 | Status: Member | 1,032 Posts
One thing that opened my eyes is this: Money management of blackjack card counters (yes they are gamblers).

There are several books about it. I liked the one written by a Chinese guy from MIT.

You can talk about money management forever whatever you trade -- forex, future, and stocks...

Since I adopted gambler's money management, it's much easier to think about how to trade forex.

Hope it helps
 
 
  • Trading Discussion
  • /
  • Thoughts/Thought Experiments on Money Management and Trading
  • Reply to Thread
0 traders viewing now
Top of Page
  • Facebook
  • Twitter
About FF
  • Mission
  • Products
  • User Guide
  • Media Kit
  • Blog
  • Contact
FF Products
  • Forums
  • Trades
  • Calendar
  • News
  • Market
  • Brokers
  • Trade Explorer
FF Website
  • Homepage
  • Search
  • Members
  • Report a Bug
Follow FF
  • Facebook
  • Twitter

FF Sister Sites:

  • Metals Mine
  • Energy EXCH
  • Crypto Craft

Forex Factory® is a brand of Fair Economy, Inc.

Terms of Service / ©2023