FMZ Quantfmzquant.hashnode.dev·Oct 8, 2024How to Build a Universal Multi-Currency Trading Strategy Quickly after FMZ UpgradePreface The FMZ Quant Trading Platform was established too early. At that time, there were very limited exchanges and currencies, and there were few trading modes. Therefore, the initial API design was simple and focused on single-currency trading st...FMZQuant
FMZ Quantfmzquant.hashnode.dev·Jun 21, 2024C++ Language Quick StartSummary C++ is a very difficult programming language. The hard part mainly is to learn in depth, but if you just write strategy logic by C++, it won't need much deep knowledge, as long as it is not a very complicated strategy. Learning some the basic...trading,
FMZ Quantfmzquant.hashnode.dev·Jun 20, 2024Visual programming quick startSummary Many subjective traders are interested in quantitative trading, at first, they begin with full confidence. After learning the basic grammar, data operations, data structure, logic control of traditional programming languages and the lengthy a...visualization
MIZZUmizzu-creations.hashnode.dev·Jun 17, 2024css에서 요소를 가운데 정렬하는 다양한 방법들1. 글의 목적 요소를 중앙 정렬할 때, display: flex; justify-content: center; align-items: center; 조합을 자주 사용하고 있는 습관을 발견했다. 이 방법이 잘못된 것은 아니지만, 반드시 필요하지 않은 부분에도 사용하고 있는 것 같은 느낌을 받았다. 이 글의 목적은 요소를 중앙 정렬하는 다양한 방법을 탐구하고, 상황에 맞는 적절한 속성을 사용할 수 있도록 하는 것이다. 2. 수평 중앙 정렬 ...CSS
FMZ Quantfmzquant.hashnode.dev·Jun 12, 2024The Advantages of Using FMZ's Extended API for Efficient Group Control Management in Quantitative TradingWith the popularization and development of quantitative trading, investors often need to manage a large number of live accounts, which brings great challenges to trading decisions, monitoring and execution. In order to improve management efficiency a...APIs
FMZ Quantfmzquant.hashnode.dev·Jun 11, 2024PSY Factor Upgrade and TransformationWelcome all traders to my channel, I am a Quant Developer, specializing in full-stack development of CTA, HFT & Arbitrage trading strategies.Thanks to the FMZ Platform, I will share more content related to quantitative development and work together w...binance
FMZ Quantfmzquant.hashnode.dev·Jun 5, 2024Build probability thinking to improve your trading patternSummary Trading is both a science and an art. There are many methods in trading, whether it is value investment, technical analysis, event hot spots, arbitrage hedging, etc., which seem logically rigorous on the surface, and it can also be plausible ...trading,
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...trading,
FMZ Quantfmzquant.hashnode.dev·May 28, 2024Linear pending order flow strategy developed based on data playback functionPreface It is often said that trading is an art, and art comes from inspiration. So today I'd like to share with you how to use the FMZ Quant data playback function to explore my trading inspiration. Inspiration and market feeling of trading What we ...code
FMZ Quantfmzquant.hashnode.dev·May 20, 2024Detailed Explanation of Futures Backhand Doubling Algorithm Strategy NotesThis strategy is a strategy that was applied to Digital Currency 796 Futures Exchange long time ago. Futures contracts are currency-based, that is, the margin is deducted by currency (for example, BTC contracts are deducted by BTC). The order quantit...Strategy