| Using the “get(BE,SE,BX,SX)Price” Command |
|
|
|
|
This command is an easy way to get the price at which the last trade was executed at. This is useful for identifying the entry and exit points, as well as filtering trades. In this example I am just going to show you a simple example of using the command to find the entry and exit price, and exit based on a 55 point profit target. if High[0] > getBEPrice(0) + Point(55) then addBuyExit endif Exploring this command will lead you to many other uses. In this example I added another filter to the mix. if High[0] > getBEPrice(0) + Point(55) and RSI[0](Close, 14) > 70 then addBuyExit endif
Powered by !JoomlaComment 3.26
3.26 Copyright (C) 2008 Compojoom.com / Copyright (C) 2007 Alain Georgette / Copyright (C) 2006 Frantisek Hliva. All rights reserved."
|







