플랫폼 사용자들의 요청에 따라 FMZ는 이제 TradingView의 파이프 언어 기능 라이브러리와 호환되며 안정적인 버전으로 출시되었습니다.
언어 기능에 대한 완전한 지원을 제공하는 지속적인 프로세스이며, 이 공개 버전은 사용자 테스트를 위해 사전에 제공됩니다.
나중에, FMZ는 TradingView의 파인 언어에 대한 기능 라이브러리 지원을 계속 증가하고 개선할 것입니다. 필요한 경우 이 전략에 대한 의견을 남겨주세요.
참고: 정의되지 않은 변수를 발견하면 이 속성이 지원되지 않는다는 것을 증명합니다. 관련 호출을 삭제하거나 문제를 해결하기 위해 기술자에게 연락하기 위해 작업 명령을 보낼 수 있습니다.
/*backtest start: 2022-08-17 08:00:00 end: 2024-08-29 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Binance","currency":"BTC_USDT"}] */ strategy("supertrend", overlay=true, default_qty_type = strategy.percent_of_equity, default_qty_value = 50) [supertrend, direction] = ta.supertrend(input(5, "factor"), input.int(10, "atrPeriod")) plot(direction < 0 ? supertrend : na, "Up direction", color = color.green, style=plot.style_linebr) plot(direction > 0 ? supertrend : na, "Down direction", color = color.red, style=plot.style_linebr) if direction < 0 if supertrend > supertrend[2] strategy.entry("entry long", strategy.long) else if strategy.position_size < 0 strategy.close_all() else if direction > 0 if supertrend < supertrend[3] strategy.entry("entry short", strategy.short) else if strategy.position_size > 0 strategy.close_all()
스토커같은 통화, 다른 거래소보다 동화를 지원합니까? 예를 들어 exchange[0].Sell? exchaneg[1].Sell: na
xaifer48파인 언어에 대한 튜토리얼을 만들 수 있을까요?
레파르센쇠고기
여름은 당신을 때리지 않습니다. 这个下单数量也是通过strategy.entry的qty参数调整吗?
제3192발명가들은 점점 더 강력해지고 있습니다.
발명가 양자화https://www.fmz.com/doc/9315#request.security는 K선보다 더 깊고 더 깊지 않습니다.
발명가 양자화물론 runtime.log 뒤에 @을 추가할 수 있지만 현재는 앱에만 알릴 수 있고,
발명가 양자화파인은 여러 화폐를 지원하지 않습니다. 하나의 전략은 하나의 화폐를 지원합니다.
발명가 양자화현재 녹화중이며, 문서를 확인하실 수 있습니다. https://www.fmz.com/doc/9315
발명가 양자화네, 기본 설정은 인터페이스 옵션의 매개 변수입니다