비트코인 가격을 설정하고 WeChat에 푸시하세요(튜토리얼)
3
Follow
1504
Followers
교육 전략:
동전값이 설정된 값보다 높거나 낮으면 자동으로 메시지가 WeChat에 전달된다. 최소 전송 간격을 설정할 수 있다.
When the price of the currency is higher or lower than the set value, a message is automatically pushed to WeChat or telegram. The minimum push interval can be set.
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

