What's inside
+Indicators, strategies, global markets, webhook templates, ve daha fazlası
+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 @@ + + +
+ + ++ 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. +
+Kapsamlı referans, gerçek örnekler, ve sürekli güncellenen hata hafızası
+AI editörlerin en sık yaptığı hatalar ve doğru v6 karşılıkları
+| v5 — Don't write | +v6 — 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 strategy | alert() inside if |
barstate.islast | barstate.isconfirmed |
array.new_float(0) | array.new<float>(0) |
calc_on_every_tick=true | Remove it |
Repo'yu clone'la, editörüne bağla. Her editör için config dosyası hazır.
+Indicators, strategies, global markets, webhook templates, ve daha fazlası
+Bu repo'dan doğan yayınlanmış ve yayına hazır scriptler
+Clone the repo, connect to your editor, and start writing correct Pine Script v6.
+ +