রিসোর্স লোড হচ্ছে... লোডিং...

অন্তর্নির্মিত ফাংশন সম্পর্কে বিশ্লেষণ এবং ব্যবহারের নির্দেশাবলী _ ক্রস

লেখক:এফএমজেড-লিডিয়া, সৃষ্টিঃ ২০২৩-০১-০৭ 15:35:44, আপডেটঃ ২০২৪-০১-০২ 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উপরের penetratedarr2n চক্র হয়েছে, এই সময়ে, এটা দ্রুত লাইন আপ অনুপ্রবেশ ধীর লাইন, একটি ক্রসআপ প্রতিনিধিত্ব করে। একই_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

যেমন আপনি চার্টে দেখতে পাচ্ছেন, ক্রসওভারটি তিনটি কে-লাইন বারের সামনে ঘটে।


আরো