كيف يتم حساب المرشحات الأكثر شيوعًا؟
التغير ونسبة التغير%
Change= (Close price of the current bar – Close price of the previous bar)
Java"سعر إغلاق العمود البياني الحالي" هو السعر الحالي.
"سعر إغلاق العمود البياني السابق" - سعر إغلاق العمود البياني السابق في الإطار الزمني المحدد.
"التغيير" هو الفرق بين الأعمدة الحالية والسابقة. يتم احتساب "نسبة التغيير (٪)" بناءً على الإطار الزمني المحدد في الشاشة. وبالتالي ، إذا تم تطبيق الفاصل الزمني 1W ، فقم بالتغيير = إغلاق العمود البياني الأسبوعي الحالي - إغلاق العمود الأسبوعي السابق (يمكنك رؤية هذه الأعمدة على الرسم البياني إذا قمت بتحديد الإطار الزمني للرسم البياني الأسبوعي).
Change % = ((Close price of the current bar – Close price of the previous bar)/Close price of the previous bar) * 100
Javaيتم حساب الصيغ الخاصة بالتغيير 1م ، والتغيير 5م، وما إلى ذلك، والتي يتم فيها تحديد الإطار الزمني ، بناءً على هذا الإطار الزمني ، ولا يتم أخذ الإطار الزمني الإجمالي لمنصة الفلترة في الاعتبار. إذا كان الإطار الزمني العام لمنصة الفلترة هو 1اسبوع ، فسيستمر حساب التغيير 1دقيقة بناءً على الإطار الزمني 1دقيقة.
Change 1m = (Close price of the current 1m bar – Close price of the previous 1m bar)Change 1m % = (Change 1m / Close price of the previous 1m bar ) * 100
JavaChange 5m = (Close price of the current 5m bar – Close price of the previous 5m bar)Change 5m % = (Change 5m / Close price of the previous 5m bar ) * 100
JavaChange 15m = (Close price of the current 15m bar – Close price of the previous 15m bar)Change 15m % = (Change 15m / Close price of the previous 15m bar ) * 100
JavaChange 1h = (Close price of the current 1h bar – Close price of the previous 1h bar)Change 1h % = (Change 1h / Close price of the previous 1h bar ) * 100
JavaChange 4h = (Close price of the current 4h bar – Close price of the previous 4h bar)Change 4h % = (Change 4h / Close price of the previous 4h bar ) * 100
Javaالتغير من سعر الافتتاح، ونسبة التغير من سعر الافتتاح %
Change from Open = (Close price of the current bar - Open price of the current bar)
JavaChange from Open % = (Change from Open / Open price of the current bar) * 100
Javaتوضح القيمة الديناميكية للعمود البياني الحالي.
تغير فترة ما قبل الجلسة، ونسبتها المئوية%
Pre-market Change = (Close price of the pre-market - Close price of the previous regular session)
JavaPre-market Change % = (Pre-market Change/ Close price of the previous regular session) * 100
Javaتغير فترة ما بعد الجلسة، ونسبتها المئوية
Post-market Change = Close price of the post-market - Close price of the previous regular session
JavaPost-market Change % = Post-market Change / Close price of the previous regular session * 100
Javaتغيير ما قبل السوق من تغيير الافتتاح ونسبة % ما قبل السوق من نسبة الافتتاح
Pre-market Change from Open = Close price of the pre-market - Open price of the pre-market
JavaPre-market Change from Open% = Pre-market Change from Open / Open price of the pre-market * 100
Javaالفجوة السعرية% ونسبة الفجوة السعرية من بيانات ما قبل الجلسة %
GAP % = (Open price of the current bar - Close price of the previous bar) /Close price of the previous bar * 100
JavaPre-market Gap % = (Open price of the pre-market - Close price of the previous regular session) / Close price of the previous regular session *100
Java