AlertSchemaTemplates
StockSharp.Alerts
一般的なテンプレートから事前設定された@AlertSchema@を作成するための工場。
メソッド
AskBelow
public static AlertSchema AskBelow(SecurityId securityId, decimal price, AlertNotifications alertType)
result = AlertSchemaTemplates.AskBelow(securityId, price, alertType)
アラートを作成します。: しきい値の下の最高の価格を尋ねます。
- securityId
- 金融商品識別子。
- price
- 値のしきい値。
- alertType
- 通知タイプ。
戻り値: 設定AlertSchema@
BidAbove
public static AlertSchema BidAbove(SecurityId securityId, decimal price, AlertNotifications alertType)
result = AlertSchemaTemplates.BidAbove(securityId, price, alertType)
アラートを作成します。: しきい値よりも最高の入札価格。
- securityId
- 金融商品識別子。
- price
- 値のしきい値。
- alertType
- 通知タイプ。
戻り値: 設定AlertSchema@
Level1
public static AlertSchema Level1(SecurityId securityId, Level1Fields field, ComparisonOperator op, decimal value, AlertNotifications alertType)
result = AlertSchemaTemplates.Level1(securityId, field, op, value, alertType)
任意のLevel1Fieldsフィールドにアラートを作成します。
- securityId
- 金融商品識別子。
- field
- レベル1フィールドを監視します。
- op
- 比較演算子。
- value
- 値の閾値。
- alertType
- 通知タイプ。
戻り値: 設定AlertSchema@
PriceAbove
public static AlertSchema PriceAbove(SecurityId securityId, decimal price, AlertNotifications alertType)
result = AlertSchemaTemplates.PriceAbove(securityId, price, alertType)
アラートを作成します。: しきい値よりも価格。
- securityId
- 金融商品識別子。
- price
- 値のしきい値。
- alertType
- 通知タイプ。
戻り値: 設定AlertSchema@
PriceBelow
public static AlertSchema PriceBelow(SecurityId securityId, decimal price, AlertNotifications alertType)
result = AlertSchemaTemplates.PriceBelow(securityId, price, alertType)
アラートを作成します。: しきい値の下の価格。
- securityId
- 金融商品識別子。
- price
- 値のしきい値。
- alertType
- 通知タイプ。
戻り値: 設定AlertSchema@
VolumeAbove
public static AlertSchema VolumeAbove(SecurityId securityId, decimal volume, AlertNotifications alertType)
result = AlertSchemaTemplates.VolumeAbove(securityId, volume, alertType)
アラートを作成します。: しきい値の上にボリューム.
- securityId
- 金融商品識別子。
- volume
- ボリュームのしきい値。
- alertType
- 通知タイプ。
戻り値: 設定AlertSchema@