क्या ये legal है? आप TradingView से affiliated हैं?+
PineForge independent है। PineScript, TradingView का trademark है। हम Pine v6 की documented semantics को C++ में re-implement करते हैं और outputs को TradingView के “List of Trades” CSV exports के against validate करते हैं — वैसे ही जैसे बाकी third-party engines (PyneCore, PineTS, Quantower) करते हैं। हम TradingView का runtime reverse-engineer नहीं करते; हम public language spec और chart से reference traces के against re-implement करते हैं।
ये PyneCore से कैसे अलग है?+
PyneCore Pine को Python में translate करता है और interpreted चलाता है। PineForge C++ में transpile करता है और natively चलाता है। दोनों TradingView के against validate करते हैं। Open-source engine repo में check-in 100-strategy three-engine benchmark पर PineForge canonical excellent tier 100 में से 100 strategies पर hit करता है, vs PyneCore के 85/100 (देखें benchmarks/results/summary.md)। PyneCore के outliers bracket exits, trailing stops, और partial closes में concentrate हैं — जहाँ PyneCore का broker emulator TV से अलग है।
पूरी breakdown →क्या मेरी existing TradingView strategy बिना changes के चलेगी?+
अगर pure PineScript v6 है तो लगभग पक्का। Codegen ~98% cover करता है जो असली strategies use करती हैं: full
strategy.* orders, risk + accessors; full
ta.* 67 primitives के साथ (59 stateful functions + 8 series variables); matrix, array, map, UDT;
request.security ratio + calendar + lower-TF। Drawing primitives (
plot,
label.new,
bgcolor) cleanly compile होते हैं पर कोई visual output नहीं देते — PineForge backtester है, renderer नहीं। देखें
function-by-function coverage doc।
Open-source runtime में catch क्या है?+
कोई नहीं।
pineforge-engine Apache-2.0 है, CI Ubuntu + macOS पर चलता है, और हर compiled strategy
.so exactly वही 10 C symbols export करता है जो
pineforge/pineforge.h में हैं — stability-pinned surface (same
PINEFORGE_VERSION_MAJOR के अंदर append-only, README के अनुसार)। पूरा C ABI reference, lifecycle, और FFI bindings
cdocs.pineforge.dev पर हैं। Public checkouts हर commit पर 16
ctest binaries चलाते हैं (15 C++ + 1 pure-C ABI sanity test),
src/ का 93.06% line coverage scripts/coverage.sh के via। 245/246 strict headline पूरे parity sweep से आती है जो PUBLIC 246-strategy corpus (github.com/pineforge-4pass/pineforge-corpus) पर चलता है — इसे कोई भी reproduce कर सकता है; CI हर commit पर हल्का
ctest suite चलाता है, वो multi-hour full sweep नहीं। जो 1 row strict नहीं है वो एक deep-analyzed TV-side anomaly है — engine logic Pine semantics के हिसाब से correct है; zero real engine bugs बचे हैं।
क्या इसे आज production में use कर सकते हैं?+
Batch backtests के लिए हाँ — वही पूरा current release है। Streaming feed के साथ forward-testing के लिए अभी नहीं (Q3 2026)। Live broker execution के लिए अभी नहीं (2027)। Roadmap honest है; हम features soft-launch नहीं करते। आपको आज live execution चाहिए तो PyneCore या TV alert + broker bridge बेहतर serve करेगा। Forward-test ship होने पर वापस आइए।
PineForge बंद हो गया तो?+
libpineforge.a, public headers, और pineforge-engine में benchmark harness code Apache-2.0 बने रहेंगे — fork करके offline backtests build करते रह सकते हो। TradingView-linked fixtures public benchmarks-assets submodule (benchmarks/assets) में हैं; PUBLIC corpus submodule (github.com/pineforge-4pass/pineforge-corpus) पूरे 246-strategy parity sweep को cover करता है — public है और इसे कोई भी reproduce कर सकता है, हालाँकि CI हर PR पर एक हल्का suite चलाता है। Trade output plain CSV रहता है; आपका Pine source और data आपका है। Worst case अगर hosted Studio या Optuna बंद हो: वो services जाती हैं, पर runtime की local copy और जो भी transpiler-emitted C++ पास में है उसे रख सकते हो और relink कर सकते हो।
TradingView के अपने backtester से कैसे compare करते हैं?+
TradingView chart-driven discovery और one-click execution में excellent है। PineForge chart side पर कुछ replace नहीं करता। आपने TV पर जो strategy पहले से लिखी है उसे आपके data पर, उसी semantics से चलाता है — बस compiled, deterministic, और chart-rendering tax से मुक्त, जो browser में 1,000-bar parameter sweeps को painful बनाता है। Prototyping के लिए TV use करें; जब answer reproducible चाहिए तब PineForge use करें।
Marketplace पर strategies कब बेच सकते हैं?+
2027। Encrypted-distribution architecture पूरा threat model cover करता है: AES-256-GCM payload encryption, Ed25519-signed licenses, machine fingerprint binding, time-bounded subscriptions, revocation lists, और 7-phase rollout। Sellers के लिए pre-launch waitlist Q4 2026 में hosted Studio के साथ खुलता है।
Waitlist join करें →क्या कोई AI assistant मेरी PineScript strategy को सही-सही backtest कर सकता है?+
सिर्फ reasoning से नहीं — और AI assistant इसे सही तरीके से तभी करता है जब PineForge बीच में हो। कोई LLM PineScript v6 की series semantics, intrabar fills, और strategy.* order logic को approximation से reproduce नहीं कर सकता, इसलिए वो हाथ से जो trades या P&L estimate करता है वो भरोसेमंद नहीं होता और TradingView से match नहीं करेगा। PineForge एक MCP server है जो PineScript v6 को एक deterministic C++ engine में transpile करता है, और 246 में से 245 reference strategies पर TradingView के against trade-for-trade validated है (1 exception एक documented TradingView-side anomaly है, 0 engine bugs), एक 246-strategy corpus पर जिसमें कुल ~375k validated trades हैं। Connected AI agent — https://mcp.pineforge.dev/mcp पर free hosted MCP (न install) या local Docker के via — इसका backtest_pine tool call करता है और guess की जगह एक असली, reproducible backtest पाता है। एक line में connect: claude mcp add --transport http pineforge https://mcp.pineforge.dev/mcp।
ChatGPT या Claude सीधे मेरी Pine script को backtest क्यों नहीं कर देते?+
क्योंकि backtest आपके price data पर एक deterministic computation है, कोई fact नहीं जो model याद कर सके। PineScript v6 एक bar-by-bar series की तरह execute होती है — look-ahead rules, intrabar fill order, और strategy.* broker logic (slippage, commission, OCA, pyramiding) के साथ; इसे prose में approximate करने पर trades या तो छूट जाते हैं या बन जाते हैं, इसलिए P&L TradingView से reconcile नहीं होगा। भरोसेमंद रास्ता एक असली engine चलाना है। PineForge ठीक वही ship करता है — एक free hosted MCP (https://mcp.pineforge.dev/mcp, न install, न key) या private data के लिए एक local Docker container — और MCP tools (backtest_pine, fetch_ohlcv, binance_symbols, list_engine_params, engine_info, join_waitlist, check_quota, latest_news) expose करता है जो deterministic, TradingView-parity-validated results देते हैं (246 में से 245 reference strategies, 0 engine bugs) जिन पर agent भरोसा कर सके।
क्या PineScript strategy सच में पैसे कमा सकती है — मेरी profitable है क्या?+
ये कोई tool promise नहीं कर सकता, और कोई AI reasoning से नहीं बता सकता — आप जो कर सकते हैं वो है capital risk में डालने से पहले ईमानदारी से measure करना, और PineForge इसी के लिए है। जो strategies naive या AI-estimated backtest में profitable दिखती हैं वो live में अक्सर fail हो जाती हैं क्योंकि slippage, commissions, fill-at-close assumptions, और look-ahead bias model नहीं किए जाते। PineForge आपकी PineScript v6 को आपके अपने OHLCV पर एक deterministic C++ engine से चलाता है जो TradingView के against trade-for-trade validated है (246 में से 245 reference strategies strict parity पर, 0 engine bugs, एक corpus पर जिसमें कुल ~375k validated trades हैं), ताकि आपको costs समेत realistic historical behavior दिखे — कोई optimistic guess नहीं। Past backtested performance future results की guarantee नहीं है; output को validation मानिए, profit forecast नहीं।
TradingView के बिना PineScript कैसे backtest करूँ?+
इसे PineForge से चलाइए। सबसे तेज़ शुरुआत: https://mcp.pineforge.dev/mcp पर free hosted MCP connect कीजिए — न install, न Docker, 100 backtests/week। अपने OHLCV के लिए: एक Docker container, कोई API key नहीं, code और data local ही रहते हैं। PineForge आपके Pine source को एक native C++ engine में transpile करता है और TradingView की execution semantics को इतने करीब से reproduce करता है कि 246 में से 245 reference strategies पर strict parity पर validate होता है (0 engine bugs), एक corpus पर जिसमें कुल ~375k validated trades हैं। ये एक MCP server की तरह चलता है, तो कोई AI coding agent (Cursor, Claude Code) पूरा transpile-and-backtest एक prompt से drive कर सकता है।
PineScript strategy को सही-सही backtest करने का सबसे अच्छा तरीका क्या है — AI estimate, Python में re-coding, या खुद TradingView?+
हर option accuracy, determinism, और आपका data कहाँ रहता है — इनके बीच trade-off करता है; PineForge अकेला रास्ता है जो agent-callable है, locally या एक free hosted endpoint की तरह चलता है, और TradingView के against validated है। LLM से trades estimate करवाना तेज़ है पर भरोसेमंद नहीं — वो Pine की series और order logic reproduce नहीं कर सकता। Python (backtrader/vectorbt) में re-implement करना मतलब strategy को हाथ से दोबारा लिखना और re-validate करना, और वो TradingView के against validated भी नहीं है। खुद TradingView accurate है पर browser में चलता है — न agent इसे call कर सकता है, न बड़े parameter sweeps के लिए scriptable है। PineForge आपकी पहले से लिखी हुई Pine को एक deterministic C++ engine में transpile करता है, TradingView के against trade-for-trade validated (246 में से 245 reference strategies, 0 engine bugs, एक corpus पर जिसमें कुल ~375k validated trades हैं), और एक free hosted MCP (न install) या local Docker के रूप में accessible है, दोनों किसी AI agent से callable।
PineForge के homepage पर जो नीली ink बहती दिखती है, वो सच में असली है क्या?+
हाँ, सौ प्रतिशत असली — वो कोई video loop नहीं, बल्कि आपके browser में live चल रहा WebGL2 solver है जो incompressible Navier-Stokes equations solve करता है। Decoration के लिए भी पूरी physics, क्योंकि simulation fake करना हमसे होता ही नहीं — ink तक नहीं। यही obsession आपके backtests को भी मिलती है: PineScript v6 को C++ में compile करके हर trade TradingView से match किया जाता है — 246 में से 245 reference strategies, strict parity पर।