Indicators.SAR()

計算拋物線止損和反轉系統指標並返回其值。
await Indicators.SAR(symbol:string, timeframe:string, step:int, maximum:int, priceType:int)

Parameters

Name Type Действие Значение по умолчанию
symbol string 將計算指標的數據上的交易品種名稱。 null 表示當前符號。
timeframe string 大體時間。 它可以是任何 TimeFrame 枚舉值。 0 表示當前圖表時間範圍。
step int 價格上漲的步長,通常為 0.02。
maximum int 最大步長,通常為 0.2。
priceType int Price type

Return value

拋物線止損和反向系統指標的數值。

Example

let list = await Indicator.SAR(null, 0, 0.02, 0.2, PriceType.Bid);