(pypscript)
(AI + Market Data)
(Binary Vector)
| Pair | Win Rate | Max Drawdown | Profit Factor |
|---|---|---|---|
| EUR/USD | 63% | 11% | 1.8 |
| GBP/USD | 58% | 14% | 1.5 |
| USD/JPY | 49% | 19% | 1.1 |
PPE results are server-verified and tamper-proof
Instant push notification
Bot integration
via Business API
Real-time signal feed
All signals carry: pair, direction (UP/DOWN), confidence score, timeframe, and timestamp
Traditional platforms demand deep machine learning knowledge
You never understand how your strategy makes decisions
Auto-trading brings regulatory complications
Self-reported backtests are easily manipulated
Human-readable strategy syntax using 300+ built-in indicators. No Python, no ML frameworks.
Our proprietary ML pipeline extracts profitable patterns into a compact binary file.
Telegram, WhatsApp, Discord, and Web. Instant signal delivery.
Managed Windows VPS for MT4/MT5. Never miss a signal again, even when your PC is off.
Simple trend reversal with RSI confirmation
#!pyp/1.0 engine: pyp-1.0 // --- Imports --- import indicators.sma import indicators.rsi import functions.cross import functions.below import functions.above // --- Strategy Logic --- strategy "simple_reversal" { // Simple moving averages fast = sma.evaluate(close, 20) slow = sma.evaluate(close, 50) // RSI for overbought/oversold rsi_signal = rsi.evaluate(close, 14) // Conditions golden_cross = cross(fast, slow) oversold = below(rsi_signal, 30) overbought = above(rsi_signal, 70) patterns { // Bullish reversal: golden cross + oversold golden_cross and oversold -> UP(confidence: 0.85) // Bearish reversal: death cross + overbought not golden_cross and overbought -> DOWN(confidence: 0.80) // Default: hold default -> HOLD(confidence: 0.95) } } // --- Meta --- meta { author: "Stanley Isaac" version: "0.1" description: "Simple trend reversal with RSI confirmation" tags: ["reversal", "rsi", "moving-average"] } // --- Config --- config { timeframes: ["5m", "15m", "1h"] pairs: ["EURUSD", "GBPUSD"] lookback_period: 100 optimization: "accuracy" }
15 pairs
15 pairs
10 pairs
8 pairs
Coming soon
Pairs at launch: 15 FX majors + minors · 15 crypto pairs
Human-readable strategy syntax. Write in plain English, not code.
Compressed, obfuscated AI models. Your IP stays protected.
Deploy to Telegram, WhatsApp, Discord, and Web instantly.
Buy and sell strategies. Monetize your trading expertise.
Live predictions in under 10ms. Never miss a trade.
Validate strategies with historical data before going live.
Signals for your eyes only
Community can view and fork the .ppc logic
List your .pyp with verified PPE metrics, earn per subscriber
Share with the community
| PyP | Traditional Platforms | |
|---|---|---|
| Strategy Logic | Human-readable pypscript | Complex proprietary scripting |
| AI Training | Proprietary ML pipeline | None — just backtesting |
| Performance Proof | Server-verified PPE results | Self-reported backtests |
| Signal Delivery | Telegram, Discord, WhatsApp, Web | Limited or none |
| Marketplace | Verified performance metrics | Unverified |
| IP Protection | Strategies never leave our servers | Client-side exposure |
SMA, EMA, WMA, DEMA, TEMA, HMA
RSI, MACD, Stochastic, CCI, ROC
Bollinger Bands, ATR, Keltner Channels
OBV, VWAP, MFI, CMF
Crossovers, Divergence, Candlestick patterns
Composable functions and multi-indicator logic