﻿function launchpadPredict(direction, timeframe, symbol, clientId, redirectUrl, originId) {

    //Save prediction               
    Anthem_InvokeControlMethod(
                            clientId,
                            "DoPrediction",
                            [direction, timeframe, symbol, originId],
                            launchpadPredictCallback(redirectUrl)
                            );
}

function launchpadPredictCallback(redirectUrl) {

    //nothing to do here..
}
