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
No it's not a spread betting account.
@WHRoader - What do you mean I don't want points in that calculation? :s?
How can I apply the correct risk to the given trade based upon the distance to the stop if I don't include points in the formula...? (confused).
23.64 || 2,364 points... That's what I am trying to get my head around... To be frank, I'm convinced that I am applying too little 1 troy ounce positions because I have a GBP denominated account... I just need someone to tell me I am right / wrong from what I've shown?
@ RaptorUK - When I say that the position size is smaller than what it should be, I mean by pretty much half...
Put it this way, I am forward testing in a small account - If the position hits it's first target, it should be taking off 25% if applicable, else close 1 minimum lot size || 1 troy ounce. The overall monetary risk on this trade equates to approx £75.00 risk.... The XAUUSD trade is just over 2/3rds of the way to taking profit at the first target... the current open P & L on that position is approx £18.00....
Now, with the same formula applied to all the currency pairs I've traded so far; they're as accurate as I need them to be... Just Gold & Silver are not... The spread on these pairs would be nothing material due to the fact that I am not shooting for 5-20 points.. Stops and targets are most of the time approx. 80-250 points...
Can you please show your code that results in this print?
double loss_for_1_lot1 = pips_to_ssl/ ts * tv ;
2013.11.08 23:40:30 2013.06.19 19:00 V1 - XAUUSD XAUUSD,H1: loss_for_1_lot1 formula: 23.64 / 0.01 * 0.01 = 23.64
Maybe you could add this print
Print("Account currency = ",AccountCurrency() );
to confirm that you are actually trading GBP in the ST because I can see no way that tv can be 0.01
I can assure you, it is GBP denominated...
What do you mean show the code that results in that print, you have it there?
I can assure you, it is GBP denominated...
What do you mean show the code that results in that print, you have it there?
Thats the output from the Print(), not the code . . . can you show the code that gives that output, the actual Print( . . . . ) statement, we need to see where you are getting the Tick value from because something is wrong with it. In fact it looks like you are printing ts (Tick Size) twice . . .
23.64 / 0.01 * 0.01 = 23.64 is incorrect, 0.01 * 0.01 = 0.0001 and 23.64 / 0.0001 = 236400
Here is also a print of ticksize and tickvalue on the live account under XAUUSD:
TickSize and Tickvalue would be both the same @ 0.01? 0.01 is the tick and for every tick move would equate to a 0.01 cent fluctuation in P & L at the smallest position size... assuming I had a USD account, it would be accurate...
Does that not sound right?
Also:
"23.64 / 0.01 * 0.01 = 23.64 is incorrect, 0.01 * 0.01 = 0.0001 and 23.64 / 0.0001 = 236400"
Yea - This would be correct if I isolated the formula like this:
"23.64 / ( 0.01 * 0.01 ) = 236400 "
But because It is one constant formula, the answer is correct in terms of producing 23.64... It's whether or not this number is the correct number in accordance with populating the correct position size?
Ok here it is:
Here is also a print of ticksize and tickvalue on the live account under XAUUSD:
Sorry, you my earlier calculation was wrong . . .
You still haven't shown the code that produces this print . . .
. . . but never mind.
Tick Value - Tick value in the deposit currency.
My understanding is how much is 1 point worth, in the deposit currency, for 1 standard lot - on my chart for a USD account for XAUUSD TickValue is 1.06908
What? That doesn't make any sense to me - How come the tick value I am seeing is simply returning 0.01...
The code is all up there ^?
double loss_for_1_lot = pips_to_bsl/ ts * tv ;
"loss_for_1_lot" is just the same as "loss_for_1_lot1", but it's on the buy side... sorry for flipping back and forward from buy to sell side, I just grab the first thing that's printed in ST, whether that be a buy or a sell...
Who is your broker? Would my tick value have something to do with the fact it is GBP denominated? (confused)
What? That doesn't make any sense to me - How come the tick value I am seeing is simply returning 0.01...
Maybe your Broker has screwed it up . . . it happens sometimes.
The code is all up there ^?
"loss_for_1_lot" is just the same as "loss_for_1_lot1", but it's on the buy side... sorry for flipping back and forward from buy to sell side, I just grab the first thing that's printed in ST, whether that be a buy or a sell...
Who is your broker? Would my tick value have something to do with the fact it is GBP denominated? (confused)