SIRI PINE SCRIPT - Melihat trend secara visualSaya gabungkan 3 moving average yang berbeza untuk hasilkan satu paparan yang jelas dengan bantuan warna latar belakang, di plot pada carta menggunakan pine script.
Idea komuniti
SIRI PINE SCRIPT - Bentuk label yang ada di tradingviewSaya tunjukan beberapa contoh rupa bentuk label yang ada.
Nampaknya sudah ada pilihan label left, label right dan label center.
Code :
// This source code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org
// © BURSATRENDBANDCHART
//@version=4
study("Jenis Label" , overlay = true)
labelsaya = label.new(bar_index, high, 'High :' +tostring(high,"##.###")+
' Low :' +tostring(low,"##.###"),
color = close > open ? color.green : color.red,
textcolor = color.white,
style=label.style_label_left,
size = size.huge)
label.delete(labelsaya )
// © BURSATRENDBANDCHART
SIRI PINE SCRIPT - Gabungan plot, label dan nilai peratusSaya cuba gabungkan antara plot, buat sedikit kiraan peratus dan masukkan ke dalam label.
Dengan gunakan templat yang sama, lebih banyak lagi yang info kita boleh masukkan ke dalam label, tidak limit kepada nilai open, high, low dan close sahaja.
Code dalam video :
// This source code is subject to the terms of the Mozilla Public License 2.0 at mozilla.org
// © BURSATRENDBANDCHART
//@version=4
study("52WHL" , overlay = true)
weekly_h = security(syminfo.tickerid, "W", highest(high, 52), lookahead=barmerge.lookahead_on)
weekly_l = security(syminfo.tickerid, "W", lowest(low, 52), lookahead=barmerge.lookahead_on)
high_percent = tostring((close - weekly_h) / weekly_h, "##.##%")
low_percent = tostring((close-weekly_l)/weekly_l, "##.##%")
labelhighlow = label.new(bar_index, na, 'High :' +high_percent+
' Low :' +low_percent,
color = color.blue,
textcolor = color.white,
style=label.style_labeldown, yloc=yloc.abovebar)
label.delete(labelhighlow )
plot(weekly_h, title='52 Week High', trackprice=true, color=color.orange, offset=-9999)
plot(weekly_l, title='52 Week Low', trackprice=true, color=color.orange, offset=-9999)
// End
Sumber code 52week high : 52 Week High/Low oleh BacktestRookies
SIRI PINE SCRIPT - Garisan plot yang berbezaSementara menunggu market kembali mengaum, saya sambung lagi siri pine script.
Kalau semalam kita buat garisan mendatar, kali ini kita buat garisan plot yang bentuknya seakan garisan moving average.
Dan sedikit perbezaan diantara stail garisan, garisan putus dan garisan langkah serta hasilnya.
TRENDBAND GUIDE - kemaskini terbaru FEB 2020 (bahagian akhir)Penamat kepada siri kemaskini trendband guide.
Saya cerita pasal kemaskini inside bar, breakout candle, alert + contoh hasil webhook ke telegram.
Kalau ada sebarang kesalahan atau ada yang tak berfungsi, boleh mesej saya dan saya cuba kemaskini semula.