全部
常见问题
公告
产品文档
OKX信号策略:如何使用TradingView警报创建您的信号策略 - 附录
//@version=5 indicator('MACD Sample Script 1', overlay=true) // Calculate MACD [macdLine, signalLine, _] = ta.macd(close, 12, 26, 9) // Define the golden cross condition goldenCross = ta.crossover(macdLine, signalLine) // Define the death cross condition deathCross = ta.crossunder(macdLine, signalLine) // Use the alertcondition function to generate alerts alertcondition(condition=goldenCross, title="MACD Golden Cross", message="") alertcondition(condition=deathCross, title="MACD Death Cross",发布于 2023年8月21日更新于 2025年4月1日产品文档欧易关于 FARTCOIN、AI16Z 永续合约正式上线的公告
英文全称:Fartcoin 英文简称:FARTCOIN 项目官网:https://www.infinitebackrooms.com/dreams/conversation-1721540624-scenario-terminal-of-truths-txt 推特:https://x.com/FartCoinOfSOL 合约要素 详情 合约标的 (Underlying) FARTCOIN/USDT 指数 结算货币 (Settlement crypto) USDT 合约面值 (Face value) 1 报价单位 (Price quotation) 按照 1 FARTCOIN 的 USDT 价格进行报价 最小变动价位 (Tick size) 0.0001 杠杆倍数 (Leverage) 0.01 ~ 50x 资金费用 (Funding fee) Clamp(MA([(合约买一价+合约卖一价) / 2 – 现货指数价格] / 现货指数价格 – Interest), -1.5%, 1.5%),其中 Interest 为 0 注:资金费用的收付采用当期收付的方式 费用收取频率 (Funding发布于 2024年12月20日更新于 2026年2月9日公告OKX信号策略:如何使用TradingView警报创建您的信号策略
``` javascript //@version=5 strategy("RSI Strategy", overlay=true) // RSI Parameters rsiLength = input(14, "RSI Length") overboughtLevel = input(60, "Overbought Level") oversoldLevel = input(40, "Oversold Level") // Calculate RSI rsiValue = ta.rsi(close, rsiLength) // Strategy Conditions longEntry = ta.cross(rsiValue, oversoldLevel) longExit = ta.cross(rsiValue, overboughtLevel) // ENTER_LONG Condition if longEntry strategy.entry("Long Entry", strategy.long) // EXIT_LONG Condition if longExit strategy.close发布于 2023年8月30日更新于 2025年12月3日产品文档
显示第 1-3 篇文章,共 3 篇