طريقة سريعة للاستعلام عن IEX Cloud للعثور على بيانات المخزون الحديثة.
استكشاف المستندات »
عرض العرض التوضيحي · خطأ مكتشف الأسهم · ميزة الطلب
لقد قمت بإنشاء هذا المشروع للاستعلام بسهولة عن قاعدة بيانات IEX Cloud الخاصة بمعلومات المخزون لاستخدامي الخاص. لقد بدأت في الأصل بالبحث عن الحزم التي قدمت هذا بالفعل ولم يتم تحديث أي منها. ثم قمت بإنشاء هذه الحزمة للسماح بنهج أكثر بساطة للقيام بذلك.
للبدء في استخدام هذه الحزمة، اتبع الخطوات التالية.
يجب أن يكون لديك أحدث إصدار من NPM حتى يعمل هذا المشروع.
npm install npm@latest -g
git clone https://github.com/austinmccalley/Stock-Finder.git
npm install
tsc
فيما يلي نموذج تعليمات برمجية لكيفية إجراء طلب بسيط للحصول على معلومات مخزون $TSLA باستخدام الحزمة مع وظيفة getStock()
.
const stockFinder = require ( 'stockfinder' ) ;
/*
Declare the Stock Finder with
the parameters you want
*/
const sf = new stockFinder ( 'stable' , 'TSLA' , apiKey , false ) ;
/*
Call the get stock function and then wait
for the promise to return
*/
sf . getStock ( ) . then ( res => {
console . log ( res )
} ) ;
إذا كنت ترغب في الحصول على أسهم متعددة فسوف تستخدم وظيفة getStocks()
.
const stockFinder = require ( 'stockfinder' ) ;
/*
Declare the Stock Finder with
the parameters you want
*/
const sf = new stockFinder ( 'stable' , [ 'TSLA' , 'AAPL' ] , apiKey , false ) ;
/*
Call the get stocks function and then wait
for the promise to return
*/
sf . getStocks ( ) . then ( res => {
console . log ( res )
} ) ;
في بعض الأحيان تواجه IEX Cloud مشكلات مع الطلبات العادية، يمكنك التبديل إلى استخدام طلب CURL بدلاً من ذلك باتباع المثال.
const stockFinder = require ( 'stockfinder' ) ;
/*
Declare the Stock Finder with
the parameters you want
*/
const sf = new stockFinder ( 'stable' , 'TSLA' , apiKey , true ) ;
/*
Call the get stock function and then wait
for the promise to return
*/
sf . getStock ( ) . then ( res => {
console . log ( res )
} ) ;
راجع المشكلات المفتوحة للحصول على قائمة بالميزات المقترحة (والمشكلات المعروفة).
المساهمات هي ما يجعل مجتمع المصادر المفتوحة مكانًا رائعًا للتعلم والإلهام والإبداع. أي مساهمات تقدمها هي موضع تقدير كبير .
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
) وزعت بموجب ترخيص معهد ماساتشوستس للتكنولوجيا. راجع LICENSE
لمزيد من المعلومات.
أوستن ماكالي - [email protected]
رابط المشروع: https://github.com/austinmccalley/Stock-Finder