Gamestudio Links
Zorro Links
Newest Posts
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
Release 2.68 replacement of the .par format
by Martin_HH. 09/23/25 20:48
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
1 registered members (TipmyPip), 17,605 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Set entry limit with a negative price #472468
04/29/18 11:36
04/29/18 11:36
Joined: Dec 2013
Posts: 568
Fuerth, DE
Sphin Offline OP
User
Sphin  Offline OP
User

Joined: Dec 2013
Posts: 568
Fuerth, DE
Quote:
A positive price or distance constitutes an entry stop, a negative price or distance an entry limit.

Does Zorro really internally calculate further on with the negative value if a limit is set this way?

from TMF:

Code:
if(!TradeIsOpen) {																					// cancel trade immediately if price is over/under limit 
	print(TO_LOG,"nTradePriceOpen: %.5f, Entry: %.5f", TradePriceOpen, Entry);										
	if(TradeIsLong && TradePriceOpen > Entry) 
		return 1;
	[...]
}



from log:

Code:
(EURUSD::L) Long 1@1.21739 Entry limit
TradePriceOpen: 1.21735, Entry: -1.21739
(EURUSD::L) Entry 1.2174 removed (TMF)


This is only true if comparing 1.21735 with -1.21739 but the sense of this operation is of course comparing 1.21735 with 1.21739 and enter the trade.

Re: Set entry limit with a negative price [Re: Sphin] #472533
05/03/18 11:22
05/03/18 11:22
Joined: Jul 2000
Posts: 28,022
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 28,022
Frankfurt
No, all parameters like Stop, Entry, etc. are internally converted to positive price limits that you can read in the TMF.


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1