Functions by Category Functions by Alphabetical list
BuyLimit ([Your Parameters]) |  | This function is used to call the BuyLimit event in the money management object that is related to the system. To actually place a BuyLimit order in the market use PlaceBuyLimit.You can also pass any number of variables to the money management object. Examples: BuyLimit; #Basic call
BuyLimit(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 , SellLimit , BuyStopLimit , SellStopLimit , StopLoss , PlaceBuyOpen , PlaceSellOpen , PlaceBuyStop , PlaceSellStop , PlaceBuyLimit , PlaceSellLimit , PlaceBuyStopLimit , PlaceSellStopLimit , PlaceStopLoss , NextBarOpen , PlaceSellMarketClose , PlaceBuyMarketClose , PlaceBuyAtPrice , PlaceSellAtPrice , OnFill
|