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

अंतर्निहित कार्य के बारे में विश्लेषण और उपयोग के निर्देश _क्रॉस

लेखक:FMZ~Lydia, बनाया गयाः 2023-10-07 15:35:44, अद्यतनः 2024-01-02 21:17:16

img

अंतर्निहित कार्य के बारे में विश्लेषण और उपयोग के निर्देश _क्रॉस

एपीआई प्रलेखन के वैश्विक कार्यों अनुभाग में _क्रॉस फ़ंक्शन का उपयोग दो संकेतकों की क्रॉसओवर स्थिति की गणना करने के लिए किया जाता है।

फ़ंक्शन कार्यान्वयन निम्न कोड के समान है:

ध्यान दें कि जबarr1तेजी से संकेतकों की एक सरणी के रूप में परिभाषित किया गया है औरarr2धीमे संकेतकों की एक सरणी के रूप में, द्वारा लौटाया गया मान_Crossकार्य सकारात्मक है, अर्थात, दस्तावेज के अनुसार,a positive number is the period of upward penetration, a negative number indicates the period of downward penetration, and 0 means the same as the current price. यह देखा जा सकता है, इस समयarr1ऊपर की ओर प्रवेश कियाarr2n चक्र हो गया है, इस समय, यह तेज रेखा ऊपर की ओर प्रवेश धीमी रेखा, एक क्रॉसअप का प्रतिनिधित्व करता है। एक ही_Crossफ़ंक्शन एक ऋणात्मक संख्या देता है, अर्थात, एक क्रॉसडाउन।

इसके विपरीत होता है यदिarr1धीमे संकेतकों की एक सरणी के रूप में परिभाषित किया गया है औरarr2तेजी से संकेतकों की एक सरणी के रूप में। एक सकारात्मक मान द्वारा लौटाया_Crossफलन एक क्रॉसडाउन का प्रतिनिधित्व करता है। एक नकारात्मक मान द्वारा लौटाया_Crossसमारोह एक क्रॉसअप का प्रतिनिधित्व करता है.

// Return to the number of periods of upward penetration, the positive number is the number of periods of upward penetration, the negative number indicates the number of periods of downward penetration, 0 means the same as the current price
$.Cross = function(arr1, arr2) {            // The number of parameters is 2, it can be seen from the parameter name, these two parameters should be an array type, the array is like an array in the X-axis for the array index value, Y-axis for the index value of the line in the coordinate system, the function is to determine the intersection of the two lines 
    if (arr1.length !== arr2.length) {      // The first step is to determine if the two arrays being compared are equal in length
        throw "array length not equal";     // Throw an error if they are not equal, it is not possible to determine the intersection of unequal lines.
    }
    var n = 0;                              // Declare the variable n to record the intersection state, initially 0, unintersected 
    for (var i = arr1.length-1; i >= 0; i--) {      // Iterate over the array arr1, from the last element forward.
        if (typeof(arr1[i]) !== 'number' || typeof(arr2[i]) !== 'number') { // When any of the arrays arr1 or arr2 is of a non-numeric type (i.e., an invalid indicator), the traversal loop is broken.
            break;                                  // break out of a loop
        }
        if (arr1[i] < arr2[i]) {                    // If arr1 is smaller than arr2 then n--, will record the relative state of arr1, arr2 at the beginning, (i.e., at the beginning n will adjust itself according to the relative sizes of arr1[i], arr2[i], and once there is another relationship between the sizes of arr1[i], arr2[i] opposite to the state of n, i.e., a crossing of the two lines has occurred.)
            if (n > 0) {
                break;
            }
            n--;
        } else if (arr1[i] > arr2[i]) {             // If arr1 is greater than arr2 then n++
            if (n < 0) {
                break;
            }
            n++;
        } else {                                    // arr1[i] == arr2[i], then immediately break
            break;
        }
    }
    return n;                                       // Returns the value of n, which represents the number of periods that have been crossed, and 0, which means that the indicator values are equal.
};

चलो इस पैरामीटर में पारित डेटा के एक सेट का अनुकरण करते हैं और देखते हैं कि यह कैसे निकलता है

var arr1 = [1,2,3,4,5,6,8,8,9]     // fast line indicator
var arr2 = [2,3,4,5,6,7,7,7,7]     // slow line indicator
function main(){
    Log("_Cross(arr1, arr2) : ", _Cross(arr1, arr2))
    Log("_Cross(arr2, arr1) : ", _Cross(arr2, arr1))
}

img

हम परिणाम देख सकते हैं 3, -3 हैं।

img

जैसा कि आप चार्ट में देखते हैं, क्रॉसओवर तीन के-लाइन बार के सामने होता है।


अधिक