diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..c7bd82b --- /dev/null +++ b/netlify.toml @@ -0,0 +1,2 @@ +[build] + publish = "public" diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..1a8b9c6 --- /dev/null +++ b/public/index.html @@ -0,0 +1,1043 @@ + + + + + + Pine Script v6 — AI Reference with Error Memory + + + + + + + + + + + + + + + +
+
+
+
+
+
+ + Open Source · MIT License +
+

+ Stop AI from writing
+ broken Pine Script +

+

+ AI editörler v5 yazıyordu. Bu repo v6 referansı ve kalıcı hata hafızası ile + tüm AI editörlerin doğru Pine Script v6 yazmasını sağlar. +

+ +
+
+ + +
+
+
+ + + + pine-script-v6-demo.pine +
+
+
// AI without this repo:
+
study("My Indicator", overlay=true) // v5
+
htf = security(syminfo.tickerid, "D", close) // v5
+
[k, d] = ta.stoch(close, high, low, 14) // wrong
+
 
+
// AI with this repo:
+
//@version=6
+
indicator("My Indicator", overlay=true)
+
htf = request.security(syminfo.tickerid, "D", close[1])
+
float k = ta.stoch(close, high, low, 14)
+
+
+
+ + +
+
+
+

Built for scale

+

Kapsamlı referans, gerçek örnekler, ve sürekli güncellenen hata hafızası

+
+
+
+
📄
+
56
+
.pine Files
+
+
+
🤖
+
9
+
AI Editors
+
+
+
🐛
+
11
+
Solved Errors
+
+
+
🌐
+
22
+
Global Markets
+
+
+
+
+ +
+ + +
+
+
+

v5 → v6 Migration

+

AI editörlerin en sık yaptığı hatalar ve doğru v6 karşılıkları

+
+
+ + + + + + + + + + + + + + + + + + +
v5 — Don't writev6 — Write this
study("name")indicator("name")
security(ticker, tf, expr)request.security(ticker, tf, expr)
input(14, type=input.integer)input.int(14, "Label")
[k, d] = ta.stoch(...)float k = ta.stoch(...)
math.avg(a, b)(a + b) / 2
alertcondition() in strategyalert() inside if
barstate.islastbarstate.isconfirmed
array.new_float(0)array.new<float>(0)
calc_on_every_tick=trueRemove it
+
+
+
+ +
+ + +
+
+
+

Works with every AI editor

+

Repo'yu clone'la, editörüne bağla. Her editör için config dosyası hazır.

+
+
+
+
Claude
+
CLAUDE.md
+
+
+
Cursor
+
.cursorrules
+
+
+
Windsurf
+
.windsurfrules
+
+
+
GitHub Copilot
+
.github/copilot-*
+
+
+
Cline
+
.clinerules
+
+
+
Roo
+
.clinerules
+
+
+
Aider
+
AGENTS.md
+
+
+
Zed
+
.zed/
+
+
+
Any LLM
+
LLM_MANIFEST.md
+
+
+
+
+ +
+ + +
+
+
+

What's inside

+

Indicators, strategies, global markets, webhook templates, ve daha fazlası

+
+
+
+
examples/indicators/
+
18 files
+
EMA, RSI, MACD, BB, Supertrend, VWAP, Ichimoku, MTF, Fakeout Filter
+
+
+
examples/strategies/
+
14 files
+
EMA cross, RSI, Supertrend, MTF, VIOP Session, Fakeout Confirmed
+
+
+
global-markets/
+
22 files
+
ES, NQ, Gold, Crude, EUR/USD, BTC, ETH, DAX, Nikkei, London Breakout
+
+
+
webhook-templates/
+
7 files
+
Telegram, Discord, JSON, VIOP alerts
+
+
+
v5-to-v6-migration/
+
10 guides
+
Complete migration guide with before/after examples
+
+
+
reference/
+
6 docs
+
ta.*, strategy.*, request.*, drawing.*, collections.*
+
+
+
+
+ +
+ + +
+
+
+

TradingView Scripts

+

Bu repo'dan doğan yayınlanmış ve yayına hazır scriptler

+
+
+ +
+
Fakeout Filter — 4-Layer Signal Quality
+
Volume + HTF + Bar Confirmation + ATR filter system
+
+ Published +
+
+
+
VIOP Session Strategy
+
BIST:XU030D1! · 09:30-18:15 UTC+3 session filter
+
+ Ready +
+
+
+
Fakeout Confirmed Strategy
+
ES, NQ, BTC, XAUUSD · 4-layer confirmed entry
+
+ Ready +
+
+
+
+ + +
+
+

Ready to fix your AI?

+

Clone the repo, connect to your editor, and start writing correct Pine Script v6.

+ +
+ git clone https://github.com/trugurpala/pinescriptv6.git +
+
+
+ + + + + + + +