बिटकॉइन मूल्य निर्धारित करें और वीचैट पर भेजें (शिक्षण)
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

