Let me know if yours is not included. Provide me a direct download to demo if it's not.
Attached Image
help for pipware-charts setting 2 replies
Pipware MiniCharts - looking for similar indicator 0 replies
Pipware minichart alternative? 0 replies
DislikedHi STRATMAN, good to see you hard at work again..lol you never stop.. looking forward to version3 ... cheers.
jeanIgnored
#include <pipware.diagnostics.mqh> #include <pipware.performance.mqh> #include <pipware.system.mqh> #include <pipware.thv.coral.mqh>
//+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { if ( !StartBegin() ) return (0); //---- int shift = pw.system.GetShift(); if ( shift < 0 ) return (-1); while(shift>=0) { gBuffer[shift] = pw.thv.coral.Update( Symbol(), Period(), shift ); gYellowBuffer[shift] = gBuffer[shift]; gGreenBuffer[shift] = gBuffer[shift]; gRedBuffer[shift] = gBuffer[shift]; if (gBuffer[shift+1] > gBuffer[shift]) { gGreenBuffer[shift] = EMPTY_VALUE; } else if (gBuffer[shift+1] < gBuffer[shift]) { gRedBuffer[shift] = EMPTY_VALUE; } else { gYellowBuffer[shift] = EMPTY_VALUE; } shift--; } //---- StartEnd(); return(0); } //+------------------------------------------------------------------+
//+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { InitBegin(); //---- indicators SetIndexStyle(0,DRAW_LINE); SetIndexStyle(1,DRAW_LINE); SetIndexStyle(2,DRAW_LINE); SetIndexBuffer(0,gYellowBuffer); SetIndexBuffer(1,gGreenBuffer); SetIndexBuffer(2,gRedBuffer); ArrayResize(gBuffer, Bars); //---- define Indicator Short Name ---- IndicatorShortName("THV Coral (" + pw.thv.coral.gPeriod + ") "); //---- InitEnd(); return(0); }
DislikedIgnored
DislikedNice, is the same thing but better performance, less CPU load, right?
Ignored
DislikedHi Stratman,
cannot load the new trix v2.0 ?
Compiled it , error is:
cannot open some program files like:
pipware.diagnostics.mqh
pipware.performance.mqh and so on ?
Can you help ?
Regards
ChievoIgnored
DislikedHi Stratman
Sorry, your download limit has been reached for this file ?????
Regards
ChievoIgnored
DislikedHi Stratman,
no problem....
I have bought your dashboard, but this the downlaod for the
Download thv_coral_pipware
link........
Works the first time, was the wrong one.....
Regards
ChievoIgnored