संसाधन लोड हो रहा है... लोड करना...

अंतर्निहित पुस्तकालय

एफएमजेड क्वांट ट्रेडिंग प्लेटफॉर्म में कुछ सामान्य पुस्तकालयों के साथ अंतर्निहित एकीकरण है।

टीए संकेतक पुस्तकालय

..TAएफएमजेड क्वांट ट्रेडिंग प्लेटफॉर्म के संकेतक पुस्तकालय ने आम तौर पर उपयोग किए जाने वाले संकेतक एल्गोरिदम को अनुकूलित किया है ताकि इसमें लिखी गई रणनीतियों की कॉल का समर्थन किया जा सके।JavaScript, PythonऔरC++. ओपन सोर्स टीए लाइब्रेरी कोड, एफएमजेड क्वांट ट्रेडिंग प्लेटफॉर्म का एपीआई मैनुअल.

function main(){
    // The length of records, when the length does not meet the parameter calculation requirements of indicator function, an invalid value will be returned
    var records = exchange.GetRecords()
    var macd = TA.MACD(records)
    var atr = TA.ATR(records, 14)
    
    // Print out the last set of indicator values
    Log(macd[0][records.length-1], macd[1][records.length-1], macd[2][records.length-1])
    Log(atr[atr.length-1])
}
def main():
    r = exchange.GetRecords()
    macd = TA.MACD(r)
    atr = TA.ATR(r, 14)
    Log(macd[0][-1], macd[1][-1], macd[2][-1])
    Log(atr[-1])
void main() {
    auto r = exchange.GetRecords();
    auto macd = TA.MACD(r);
    auto atr = TA.ATR(r, 14);
    Log(macd[0][macd[0].size() - 1], macd[1][macd[1].size() - 1], macd[2][macd[2].size() - 1]);
    Log(atr[atr.size() - 1]);
}

तालिब संकेतक पुस्तकालय

निम्नलिखित हैCCIसंकेतक कॉल उदाहरण कोड, अधिक तालिब संकेतक कार्यों में पाया जा सकता हैएफएमजेड क्वांट ट्रेडिंग प्लेटफॉर्म का एपीआई मैनुअल

function main() {
    var records = exchange.GetRecords()
    var cci = talib.CCI(records, 14)
    Log(cci)
}
# Python requires a separate installation of the talib library
import talib
def main():
    records = exchange.GetRecords()
    # The parameter 14 can be defaulted
    cci = talib.CCI(records.High, records.Low, records.Close, 14)   
    Log(cci)
void main() {
    auto records = exchange.GetRecords();
    auto cci = talib.CCI(records, 14);
    Log(cci);
}

जावास्क्रिप्ट पुस्तकालय

  • http://mikemcl.github.io/decimal.js/
    // Solve the problem of javascript language data calculation accuracy
    function main() {
        var x = -1.2
        var a = Decimal.abs(x)
        var b = new Decimal(x).abs()
        Log(a.equals(b))                           // true  
        
        var y = 2.2
        var sum = Decimal.add(x, y)
        Log(sum.equals(new Decimal(x).plus(y)))    // true    
    }
    
  • http://underscorejs.org/
    function main() {
        var sum = _.reduce([1, 2, 3], function(memo, num){return memo + num}, 0)
        Log(sum)
    }
    
  • http://ta-lib.org/
    function main(){
        var records = exchange.GetRecords()
        // Print all indicator data, and JavaScript written strategies have integrated a talib library on FMZ Quant Trading Platform
        Log(talib.MACD(records))
        Log(talib.MACD(records, 12, 26, 9))
    }
    
  • जावास्क्रिप्ट पुस्तकालयों को गतिशील रूप से लोड करना यदि आपको अन्य तृतीय पक्ष जावास्क्रिप्ट पुस्तकालयों का उपयोग करने की आवश्यकता है, तो आप उन्हें गतिशील रूप से लोड करने के लिए निम्न विधि का उपयोग कर सकते हैंः
    function main() {
        // via. https://cdnjs.com/libraries
        eval(HttpQuery("https://cdnjs.cloudflare.com/ajax/libs/mathjs/13.2.0/math.min.js"))
        
        Log(math.round(math.e, 3))                // 2.718
        Log(math.atan2(3, -3) / math.pi)          // 0.75
        Log(math.log(10000, 10))                  // 4
        Log(math.sqrt(-4))                        // {"mathjs":"Complex","re":0,"im":2}
    } 
    

सी++ पुस्तकालय

  • https://nlohmann.github.io/json/
    void main() {
        json table = R"({"type": "table", "title": "Position Information", "cols": ["Column1", "Column2"], "rows": [["abc", "def"], ["ABC", "support color #ff0000"]]})"_json;
        LogStatus("`" + table.dump() + "`");
        LogStatus("Fist line message\n`" + table.dump() + "`\nThird line message");
        json arr = R"([])"_json;
        arr.push_back(table);
        arr.push_back(table);
        LogStatus("`" + arr.dump() + "`");
        
        table = R"({
            "type" : "table", 
            "title" : "Position Operation", 
            "cols" : ["Column1", "Column2", "Action"], 
            "rows" : [
                ["abc", "def", {"type": "button", "cmd": "coverAll", "name": "close position"}]
            ] 
        })"_json;
        LogStatus("`" + table.dump() + "`", "\n`" + R"({"type": "button", "cmd": "coverAll", "name": "close position"})"_json.dump() + "`");
    }
    
वेब3 विस्तारित एपीआई इंटरफ़ेस