OPEN-SOURCE SCRIPT

Mein Skript

64
//version=5
indicator("CAN SLIM Filter", overlay=true)

// Beispielhafte Kriterien
eps_growth = input.float(25, "EPS-Wachstum (%)")
rel_volume = input.float(1.5, "Relatives Volumen")

// Simulierte Beispieldaten
mock_eps_growth = ta.rma(close / close[1] - 1, 90) * 100
mock_rel_volume = volume / ta.sma(volume, 50)

plotshape(mock_eps_growth > eps_growth and mock_rel_volume > rel_volume, title="CAN SLIM Match", location=location.belowbar, color=color.green, style=shape.labelup)

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。