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