Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v3.007-db-export' into v3.009-de…
Browse files Browse the repository at this point in the history
…v-new

* origin/v3.007-db-export:
  EA: Adds db export to test
  • Loading branch information
kenorb committed Sep 8, 2024
2 parents 126e522 + b37b694 commit f6380d1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/EATest.mq5
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ void OnTick() {
* Implements OnDeinit().
*/
void OnDeinit(const int reason) {
// Run data export via task.
TaskActionEntry _task_run_export(EA_ACTION_EXPORT_DATA);
ea1.Run(_task_run_export);
ea2.Run(_task_run_export);
ea3.Run(_task_run_export);
// Clean up.
delete ea1;
delete ea2;
delete ea3;
Expand Down

0 comments on commit f6380d1

Please sign in to comment.