Может, стоит подтянуть английский?

В крайнем случае воспользоваться компьютерным переводчиком.
Вам стоит по приведенной ссылке скачать WealthScript Function Reference.
Там эти финукции (или операторы вызова функций, если хотите) описаны очень просто, подробно и с примерами, например по функции ShortAtMarket:
Раздел 17.33
ShortAtMarket
ShortAtMarket( Bar: integer; SignalName: string ): boolean;
RChartScripts XSimuScripts XPerfScripts XCMScripts
Description
Establishes a short Position at market open of the specified Bar.
Remarks
• Slippage, when activated, can affect the trade's execution price.
• The string, which may be a blank string, passed as the SignalName parameter will
appear in the Entry Signal column in the Trades View for ChartScript and $imulator
windows, or in the Signal Name column for the Scans tools.
• ShortAtMarket will return boolean false if the signal fails to establish a new
position. This can occur, for example, when using 100% equity position sizing
without Leeway.
Example
{ Establish a short position if RSI gets overbought }
var BAR: integer;
for Bar := 40 to BarCount - 1 do
begin
if not LastPositionActive then
begin
if RSI( Bar, #Close, 20 ) > 70 then
ShortAtMarket( Bar + 1, 'RSI Short Signal');
end
else
begin
{ ... Exit Rules ... }
end;
end;
PS: Это не вопрос по теме FAQ для новичков, поэтому я его выделил отдельно.
А чем интересен для Вас именно этот язык?