Minimal ta.crossover conversion probe
//@version=6indicator("PineAnywhere ta.crossover compatibility probe", overlay=false)probe_value = ta.crossover(close, ta.sma(close, 14)) ? 1 : 0plot(probe_value)
Probe result: Passed
PineAnywhere converts ta.crossover through its production Pine parser and intermediate target pipeline. This probe verifies conversion structure; final MetaEditor compilation and platform-specific visual or trading behavior remain separate evidence stages.
Pine to MetaTrader 5: Conditional
ta.crossover(source1, source2) → series bool//@version=6indicator("PineAnywhere ta.crossover compatibility probe", overlay=false)probe_value = ta.crossover(close, ta.sma(close, 14)) ? 1 : 0plot(probe_value)Probe result: Passed
Proves that the production Pine parser, AST visitor, ANF lowerer, and intermediate target emitter accept a minimal ta.crossover indicator call.