Start to write some crypto strategies guys..
Use Zorro 171 beta.
In attachment there is a script to download 60 minuted history from CryptoCompare. You will need the CryptoCompareHistoryAPI exe and dependencies in your zorro folder.
Put your symbols in your asset list that you want to download.
See sample in BitTrex plugin readme.
Then start with the simplest strategy on 60 min bars like the one below from the manual with few changes.

Enjoy.
Vincenzo


function run()
{
set(TESTNOW+LOGFILE);
set(PRELOAD);
StartDate = 2015;
BarPeriod = 60;
//NumYears=1;
//StartDate = 20140718;
//EndDate = 20170522; // fixed simulation period
Margin=1;
//Capital=10000;
vars MMI_Raw;
vars MMI_Smooth;

assetList("AssetsCoinsBitTrexStrategy.csv");
while (asset(loop(Assets)))
{


vars Price = series(price());
vars Volume = series(marketVol ());
vars Trend = series(LowPass(Price,50));//500

Stop = 4*ATR(25);

MMI_Raw = series(MMI(Price,30));//300
MMI_Smooth = series(LowPass(MMI_Raw,50));//500

if(falling(MMI_Smooth)) {
if(valley(Trend) && rising(Volume))
enterLong();
else if(peak(Trend))
exitLong();

}


}

set(LOGFILE); // log all trades
PlotWidth = 800;
PlotHeight1 = 300;
plot("MMI_Raw",MMI_Raw,NEW,GREY);
plot("MMI_Smooth",MMI_Smooth,0,BLACK);
//plotTradeProfile(-50);
}

Attached Files