v1.9 Released! (Lite, Standard & Professional)

General discussion about the Tickstory Lite software package.
tickstory
Posts: 4883
Joined: Sun Jan 06, 2013 12:27 am

Re: v1.9 Released! (Lite, Standard & Professional)

Post by tickstory »

Hi Lorraine,

As you're aware, we've sent a response to your email request.

Thanks.

Plioksf
Posts: 1
Joined: Thu Mar 04, 2021 2:37 pm

Re: v1.9 Released! (Lite, Standard & Professional)

Post by Plioksf »

I am looking for the link to download the latest version of the software
thanks

tickstory
Posts: 4883
Joined: Sun Jan 06, 2013 12:27 am

Re: v1.9 Released! (Lite, Standard & Professional)

Post by tickstory »

Hi Plioksf,

If you are referring to our Lite version, then the latest version is available on our download page.
If you are looking for the latest registered version, then if you have an active subscription, clicking your download link (which was provided to you when you purchased the software) will give you the latest version.

If you require further assistance as a registered user, could you please provide the email address you used when purchasing the software.

Thanks.

smt.tech
Posts: 2
Joined: Sat Jan 23, 2021 7:31 am

Re: v1.9 Released! (Lite, Standard & Professional)

Post by smt.tech »

where to download pro file

tickstory
Posts: 4883
Joined: Sun Jan 06, 2013 12:27 am

Re: v1.9 Released! (Lite, Standard & Professional)

Post by tickstory »

Hello,

The download link for the registered version is given to you in the email we sent upon purchase. We have resent the link to you just now for your reference.

Thanks.

kwanann
Posts: 3
Joined: Tue Jun 15, 2021 12:08 am

Re: v1.9 Released! (Lite, Standard & Professional)

Post by kwanann »

Hi

I recently purchased/renewed a monthly subscription to tickstory. However using the original download link seems to give me an older version.

Each time i start tickstory, i get a prompt which indicates that there is a new version available which supports MT4 build 1330 etc

May i know how can i proceed to download the latest version of tickstory?

tickstory
Posts: 4883
Joined: Sun Jan 06, 2013 12:27 am

Re: v1.9 Released! (Lite, Standard & Professional)

Post by tickstory »

Hi kwanann,

Thanks for updating your subscription. Apologies for the notification message, this has been corrected now. As long as you're on v1.9.6.2 you have the most recent version. We will be releasing a new update shortly and as soon as it available your download link will give you the latest version.

Regards.

kwanann
Posts: 3
Joined: Tue Jun 15, 2021 12:08 am

Re: v1.9 Released! (Lite, Standard & Professional)

Post by kwanann »

Dear Tickstory

In this case there seems to be some issue with the Launch MT4 capability

With older versions, i'm able to backtest the EA with multiple TF data. And if i were to launch MT4 directly, the EA is able to backtest using multiple TF data (albeit with lesser precision)

However if i were to launch MT4 from Tickstory, the ability to test multiple TF fails

tickstory
Posts: 4883
Joined: Sun Jan 06, 2013 12:27 am

Re: v1.9 Released! (Lite, Standard & Professional)

Post by tickstory »

Hi Kwanann,

Do you have more details on what "fails" on your multi-time frame testing? If you are getting some sort of error, it may be possible that the EA is not handling the tick data correctly? Your Journal should tell you more.

Thanks.

kwanann
Posts: 3
Joined: Tue Jun 15, 2021 12:08 am

Re: v1.9 Released! (Lite, Standard & Professional)

Post by kwanann »

Hi Tickstory

Here's what i did.
1. Goto tickstory and download the historical data for GBPAUD from 2011-01-01 to 2021-06-15
2. Tickstory > Launch MT4 (tried both direct and via advanced tester beta)
3. Create a simple EA (code below)
//+------------------------------------------------------------------+
//| Test.mq4 |
//| Copyright 2016, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2016, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//---

//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---

}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
{
//---
Print("M5 : ", iTime(Symbol(), PERIOD_M5, 0));
Print("M15 : ", iTime(Symbol(), PERIOD_M15, 0));
Print("H1 : ", iTime(Symbol(), PERIOD_H1, 0));
Print("H4 : ", iTime(Symbol(), PERIOD_H4, 0));
Print("D1 : ", iTime(Symbol(), PERIOD_D1, 0));
}
//+------------------------------------------------------------------+
//+------------------------------------------------------------------+
//| Test.mq4 |
//| Copyright 2016, MetaQuotes Software Corp. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2016, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict
//+------------------------------------------------------------------+
//| Expert initialization function |
//+------------------------------------------------------------------+
int OnInit()
{
//---

//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Expert deinitialization function |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
{
//---

}
//+------------------------------------------------------------------+
//| Expert tick function |
//+------------------------------------------------------------------+
void OnTick()
{
//---
Print("M5 : ", iTime(Symbol(), PERIOD_M5, 0));
Print("M15 : ", iTime(Symbol(), PERIOD_M15, 0));
Print("H1 : ", iTime(Symbol(), PERIOD_H1, 0));
Print("H4 : ", iTime(Symbol(), PERIOD_H4, 0));
Print("D1 : ", iTime(Symbol(), PERIOD_D1, 0));
}
//+------------------------------------------------------------------+

When testing Period is set to H1
2021.06.23 06:40:57.435 2021.01.06 20:44:40 Test GBPAUD.sq,H1: D1 : 2021.01.06 00:00:00
2021.06.23 06:40:57.435 2021.01.06 20:44:40 Test GBPAUD.sq,H1: H4 : 2021.01.06 20:00:00
2021.06.23 06:40:57.435 2021.01.06 20:44:40 Test GBPAUD.sq,H1: H1 : 2021.01.06 20:00:00
2021.06.23 06:40:57.435 2021.01.06 20:44:40 Test GBPAUD.sq,H1: M15 : 1970.01.01 00:00:00
2021.06.23 06:40:57.435 2021.01.06 20:44:40 Test GBPAUD.sq,H1: M5 : 1970.01.01 00:00:00

When testing Period is set to M5
2021.06.23 06:42:49.087 2021.01.06 15:19:52 Test GBPAUD.sq,M5: D1 : 2021.01.06 00:00:00
2021.06.23 06:42:49.087 2021.01.06 15:19:52 Test GBPAUD.sq,M5: H4 : 2021.01.06 12:00:00
2021.06.23 06:42:49.087 2021.01.06 15:19:52 Test GBPAUD.sq,M5: H1 : 2021.01.06 15:00:00
2021.06.23 06:42:49.087 2021.01.06 15:19:52 Test GBPAUD.sq,M5: M15 : 1970.01.01 00:00:00
2021.06.23 06:42:49.087 2021.01.06 15:19:52 Test GBPAUD.sq,M5: M5 : 2021.01.06 15:15:00

Post Reply