0
Follow
1
Followers
価格が更新されると,下記のコードで表を更新します. マットンが,通貨ペアの現在の価格を直接指定して変更できるという私の理解はありますか?
tab1 = {
"type": "table",
投稿者: <unk> <unk> <unk> <unk>
"cols": ["通貨ペア" "現在の価格" "ポジションの方向" "指数値" "ポジション開設価格" "ポジション開設価格" "ポジション開設量" "損益状況" "レバレッジ" "保証金"
"rows": []
}
for index, row in df_table.iterrows():
tab1["rows"].append([
row["通貨ペア"と書かれています.
row["現在の価格"
row[投資の方向性について
row["指数値"と
row[公開価格を設定する.
row["実際の開設価格"と
row[持ってる人数
row[ビジネスモデルを活用して
row["レバレッジ"
row["保証金"
])
LogStatus('' + json.dumps(tab1) + '')
Related Recommendations
Inventor Quant Workflow FAQ (Continuously Updated)Financial Magic Zone Global KOL RecruitmentFAQ Summary (Updating...)PINE Language Introductory Tutorial of FMZ QuantPrimary Tutorial of Strategy Writing with FMZ Quant Trading Platform (Must Read)Getting Started with FMZ Quant Trading Platform (Must Read)MyLanguage Doc
Comment
All comments (3)
以此类推:
python
tab1 = {
"type": "table",
"title": "账户:",
"cols": ['当前价格'],
"rows": [[exchange.GetTicker()["last"]]]
}
LogStatus('`' + json.dumps(tab1) + '`')
3 years ago
- 1


