Functions by Category Functions by Alphabetical list
BuyStopLimit ([Your Parameters]) |  | This function is used to call the BuyStopLimit event in the money management object that is related to the system. To actually place a BuyStopLimit order in the market use PlaceBuyStopLimit.You can also pass any number of variables to the money management object. Examples: BuyStopLimit; #Basic call
BuyStopLimit(ClosePrice, HighPrice);
#Pass in the ClosePrice and HighPrice to the money management object
To retrieve these values in the money management object you would use: my ($symbolCP,$symbolHP)=@_;
The variables $symbolCp and $symbolHP would now contain the ClosePrice and HighPrice for the current symbol. Related functions: BuyOpen , SellOpen , SellStop , BuyStop , BuyLimit , SellLimit , SellStopLimit , StopLoss , PlaceBuyOpen , PlaceSellOpen , PlaceBuyStop , PlaceSellStop , PlaceBuyLimit , PlaceSellLimit , PlaceBuyStopLimit , PlaceSellStopLimit , PlaceStopLoss , NextBarOpen , PlaceSellMarketClose , PlaceBuyMarketClose , PlaceBuyAtPrice , PlaceSellAtPrice , OnFill
|