FMZ Quantfmzquant.hashnode.dev·Jun 4, 2024Three potential models in quantitative tradingThe triple realm of trading: induction - deduction - gaming Period potential model MA1:MA(O,18); //Find the average opening price of 18 periods TMP:=(REF(C,1)-REF(C,10))/REF(C,1); // The difference between the closing price one period ago minus the c...Discusstrading,
FMZ Quantfmzquant.hashnode.dev·May 28, 2024Teach you to write a K-line synthesis function in the Python versionWhen writing and using strategies, we often use some rarely used K-line period data. However, exchanges and data sources do not provide data on these periods. It can only be synthesized by using data with an existing period. The synthesized algorithm...DiscussPython
FMZ Quantfmzquant.hashnode.dev·May 14, 2024Use the KLineChart function to make strategy drawing design easierWhen designing a strategy, it is often necessary to design a strategy chart to display, when writing strategies in JavaScript language, Python language, users who are unfamiliar with programming or the charting library used in the FMZ platform often ...DiscussK-line