Search content
Sort by

Showing 3 of 3 results by zasony0
Post
Topic
Board Project Development
Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]
by
zasony0
on 14/01/2019, 18:32:40 UTC
Please know someone writing a script to read the Telegram signal and then enter a business order?
This is source from Demjan> https://github.com/DrrMrr/qt-bitcoin-trader-scripts-signal-trading
For example Telegram signal> #BTC_RDN (BINANCE) BUY - 0.00005990 Target: 0.00006080 (1.50% profit)
Post
Topic
Board Project Development
Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]
by
zasony0
on 13/01/2019, 20:14:15 UTC
my attempt of a neprogramatora Sad


var signal1Status = variablePath + "Signal1.txt";


function readSignalFiles() {
    var scriptName = "readSignalFiles()";
    eventLogger(scriptName + ".START");

    signal1Status = trader.fileReadAll(signal1StatusFile).toString().trim();    
    signal2Status = trader.fileReadAll(signal2StatusFile).toString().trim();
    
    eventLogger(scriptName + ".signal1Status: " + signal1Status);        //what is eventLogger?
    eventLogger(scriptName + ".signal2Status: " + signal2Status);    

    //signalCorrection();

    signal1StatusOld = signal1Status;    
    signal2StatusOld = signal2Status;
    
    eventLogger(scriptName + ".END");
}

Post
Topic
Board Project Development
Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]
by
zasony0
on 13/01/2019, 18:03:33 UTC
hello Ighor, very good work. Please connect your program to TELEGRAM signals? well thank you.
Perhaps a question for scripting programmers. I can read the TXT subor, where will the signal from the Telegram.
Well thank you. I'm asking for a reading script from TXT to Qt.