Functions by Category Functions by Alphabetical list
PlaceSellLimit([label],[units],[limit price]) |  | The function places a sell limit order for the current symbol. If the units is zero, or omitted the position will be closed completely (if the position is long). Examples: #Buy 100 units with a limit of the close plus the ATR
PlaceSellLimit('Exit rule one',100,ClosePrice+Now(ATR(45)));
#Exit this long position with a limit price of 12.12
PlaceSellLimit('Exit short',12.12);
Related functions: BuyOpen , SellOpen , SellStop , BuyStop , BuyLimit , SellLimit , BuyStopLimit , SellStopLimit , StopLoss , PlaceBuyOpen , PlaceSellOpen , PlaceBuyStop , PlaceSellStop , PlaceBuyLimit , PlaceBuyStopLimit , PlaceSellStopLimit , PlaceStopLoss , NextBarOpen , PlaceSellMarketClose , PlaceBuyMarketClose , PlaceBuyAtPrice , PlaceSellAtPrice , OnFill
|