বিটকয়েনের মূল্য নির্ধারণ করে ওয়েইচ্যাটে পুশ করা (শিক্ষা)
3
Follow
1518
Followers
শিক্ষণ কৌশল:
যখন মুদ্রার মূল্য নির্ধারিত মানের উপরে বা নীচে যায়, স্বয়ংক্রিয়ভাবে WeChat বা Telegram-এ একটি বার্তা পাঠানো হয়। ন্যূনতম বার্তা প্রেরণের ব্যবধান নির্ধারণ করা যায়।
Source
JavaScript
/*
This stragegy will sent a message to your telegram when the price is higher or lower than
the set price.
All stragegy must has a main function as the entrance.
*/
function main() {
//change symbol,will cover the default exchange which was set when start a bot.Currency is a strategy arguments
exchange.IO("currency", Currency)
var lastPushTime = 0 //the variable of last push timestamp.
while(true){ //run a infinite loop, which is the basic structureStrategy parameters
Related strategies
Comment
All comments (4)
- 1

