个人中心
登出
中文简体
返回
登录后咨询在线客服
回到顶部

RSI 表

我知道很多人一直在给我发消息,索取 RSI 表的代码。
我是免费发布的!但如果这对你有帮助而且你想捐款的话这里是我的 cashapp $pato83
RSI 表
免责声明:社区由Moomoo Technologies Inc.提供,仅用于教育目的。 更多信息
2
1
+0
2
原文
举报
浏览 4.8万
评论
登录发表评论
  • pachi 楼主 : //@version =5
    //pachito83
    指标(“多时间框架 RSI 表”,overlay=true)

    var 表 rsi_table = table.new(position.top_right,10、2,border_width=0)

    B_Clr = color.rgb (8, 8, 8, 35)
    B_Grn = color.rgb (44, 106, 44, 20)
    B_Red = #701919cc
    B_Main = color.rgb (20, 20, 20, 20)
    T_Font = 字体.family_monospace
    t_size = 大小。正常
    tcolor = color.white
    wclor = color.white
    //获取给定时间范围内的 RSI 的函数

    get_rsi (tf) =>
    request.security(syminfo.tickerid、tf、ta.rsi(关闭,14))

    //用 RSI 值填充表格
    table.cell(rsi_table,0,0,“RSI”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,0,1,str.tostring(syminfo.ticker),bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)

    table.cell(rsi_table,1,0,“1M”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,1、1、str.tostring(math.round(get_rsi(“1"))),bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)

    table.cell(rsi_table,2,0,“5M”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,2、1、str.tostring(math.round(get_rsi(“5"))),bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)

    table.cell(rsi_table,3,0,“15M”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,3、1、str.tostring(math.round(get_rsi(“15”))、bgcolor = B_Clr、text_size = T_size、text_font_family = T_Font、text_color = wclor)

  • pachi 楼主 : table.cell(rsi_table,4,0,“30M”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,4、1、str.tostring(math.round(get_rsi(“30”))、bgcolor = B_Clr、text_size = T_size、text_font_family = T_Font、text_color = wclor)

    table.cell(rsi_table,5,0,“1H”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,5、1,str.tostring(math.round(get_rsi(“60”)),bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)

    table.cell(rsi_table,5,0,“2H”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,5、1、str.tostring(math.round(get_rsi(“120”))、bgcolor = B_Clr、text_size = T_size、text_font_family = T_Font、text_color = wclor)

    table.cell(rsi_table,6,0,“4H”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,6、1、str.tostring(math.round(get_rsi(“240”))、bgcolor = B_Clr、text_size = T_size、text_font_family = T_Font、text_color = wclor)

    table.cell(rsi_table,7,0,“D”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,7、1、str.tostring(math.round(get_rsi(“D”))、bgcolor = B_Clr、text_size = T_size、text_font_family = T_Font、text_color = wclor)

    table.cell(rsi_table,8,0,“W”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,8,1,str.tostring(math.round(get_rsi(“W”)),bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)

    table.cell(rsi_table,9,0,“M”,bgcolor = B_Clr,text_size = T_size,text_font_family = T_Font,text_color = wclor)
    table.cell(rsi_table,9、1、str.tostring(math.round(get_rsi(“M”))、bgcolor = B_Clr、text_size = T_size、text_font_family = T_Font、text_color = wclor)

love reading charts and learning new things.
676粉丝
68关注
2826来访
关注