[STOCK] [TradingView][教學][Table] 使用Pine Script來將資訊表格化(二) - 顯示股票資訊範例

目的

本篇主要是利用table的函數來顯示股票資訊的範例。


[STOCK] [TradingView][教學][Table] 使用Pine Script來將資訊表格化(一)

如果文章對你有幫助在幫我按一下廣告來讓我有額外收入這也是對我來說是一種鼓勵

說明

//@version=4
study("商品資訊Table", overlay=true)

var testTable = table.new(position = position.top_right,columns = 3, rows = 7, bgcolor = color.yellow, border_width = 1, border_color = color.blue)
if barstate.islast
    // 第一列
    table.cell(table_id = testTable, column = 0, row = 0, width = 5, text = "", text_color=color.white,  bgcolor=color.blue)
    table.cell(table_id = testTable, column = 1, row = 0, width = 10, text = "商品資訊",text_color=color.white,  bgcolor=color.blue)
    table.cell(table_id = testTable, column = 2, row = 0, width = 10, text = "", text_color=color.white, bgcolor=color.blue)
    // 第二列
    table.cell(table_id = testTable, column = 0, row = 1, text = "商品簡碼",  bgcolor=color.white)
    table.cell(table_id = testTable, column = 1, row = 1, text = "商品簡碼(交易所)",  bgcolor=color.white)
    table.cell(table_id = testTable, column = 2, row = 1, text = "商品貨幣",  bgcolor=color.white)
    // 第三列
    table.cell(table_id = testTable, column = 0, row = 2, text = syminfo.ticker, bgcolor=color.white)
    table.cell(table_id = testTable, column = 1, row = 2, text = syminfo.tickerid,  bgcolor=color.white)
    table.cell(table_id = testTable, column = 2, row = 2, text = syminfo.currency,  bgcolor=color.white)
    // 第四列
    table.cell(table_id = testTable, column = 0, row = 3, text = "當前商品的貨幣", bgcolor=color.white)
    table.cell(table_id = testTable, column = 1, row = 3, text = "交換時區",  bgcolor=color.white)
    table.cell(table_id = testTable, column = 2, row = 3, text = "開盤價",  bgcolor=color.white)
    // 第五列
    table.cell(table_id = testTable, column = 0, row = 4, text = syminfo.currency, bgcolor=color.white)
    table.cell(table_id = testTable, column = 1, row = 4, text = syminfo.timezone,  bgcolor=color.white)
    table.cell(table_id = testTable, column = 2, row = 4, text = str.format("{0,number,#.##}", open),  bgcolor=color.white)
    // 第六列
    table.cell(table_id = testTable, column = 0, row = 5, text = "商品的類型", bgcolor=color.white)
    table.cell(table_id = testTable, column = 1, row = 5, text = "交換時區",  bgcolor=color.white)
    table.cell(table_id = testTable, column = 2, row = 5, text = "收盤價",  bgcolor=color.white)
    // 第七列
    table.cell(table_id = testTable, column = 0, row = 6, text = syminfo.type, bgcolor=color.white)
    table.cell(table_id = testTable, column = 1, row = 6, text = syminfo.timezone,  bgcolor=color.white)
    table.cell(table_id = testTable, column = 2, row = 6, text = str.format("{0,number,#.##}", close),  bgcolor=color.white)





留言

熱門文章