MonsterMan
New Member
- Joined
- Jul 24, 2018
- Messages
- 13
I am trying to get this simple. Excel table to work. The idea is show if all trades that are made, whether, Winners or Losers. If the trade is a Long, the exit price need to be higher than the entry price to be a winner, if it is less, then the trade will be a loser.
Setup – Long
Entry – 10
Exit 12
Winner (will show ‘Winner’)
Setup – Long
Entry – 10
Exit 9
Loser (will show ‘Loser’)
The same goes for a short trade. The exit price needs to be lower than the entry price to be a winner. If it is higher than the entry price, then the trade is a loser.
Setup – Short
Entry – 10
Exit – 9
Winner (will show ‘Winner’)
Setup – Short
Entry 10
Exit – 11
Loser (will show ‘Loser’)
The formula I have so far is this, but does not seem to be working. Can anyone help me out please?
=IF[Entry]="",[Exit]="","",IF([Setup]="Long", IF[Exit]-[Entry]>0,"Winner","Loser", =IF[Entry]="",[Exit]="","",IF([Setup]="Short", IF[Exit]-[Entry]<0,"Winner","Loser")
I would attach the spread sheet, but I can't seem to find a button at attach. So, I have uploaded a screenshot - https://imgur.com/kKBfLMZ
Thank MM
Setup – Long
Entry – 10
Exit 12
Winner (will show ‘Winner’)
Setup – Long
Entry – 10
Exit 9
Loser (will show ‘Loser’)
The same goes for a short trade. The exit price needs to be lower than the entry price to be a winner. If it is higher than the entry price, then the trade is a loser.
Setup – Short
Entry – 10
Exit – 9
Winner (will show ‘Winner’)
Setup – Short
Entry 10
Exit – 11
Loser (will show ‘Loser’)
The formula I have so far is this, but does not seem to be working. Can anyone help me out please?
=IF[Entry]="",[Exit]="","",IF([Setup]="Long", IF[Exit]-[Entry]>0,"Winner","Loser", =IF[Entry]="",[Exit]="","",IF([Setup]="Short", IF[Exit]-[Entry]<0,"Winner","Loser")
I would attach the spread sheet, but I can't seem to find a button at attach. So, I have uploaded a screenshot - https://imgur.com/kKBfLMZ
Thank MM