I am trying to modify the VolumeProfile.efs to use for both ZB and US ( Bonds), however, I am getting a error message about period is undefined even though I have it set to 1 day increment.
1) I have set up a chart template for bond ( US) from 8:00 am to 3:00 pm. but need to have a separate chart time template for ZB. So, since ZB trades from 21:00 hours to 17:00 hours, how is a template set up for that? So far, Charting template does not like that type of hour ( Start/Stop) trading time configuration.
I have noticed that eSignal charting for the actual high/low prices are incorrect for intraday charting if using standard time template. They are correct if set to daily. I believe this is due to the start/stop time for the template, however, so far I have not been able to create a time template for ZB.
2) What would be the VPincrement for bonds? Since eSignal converts the bond price from decimal to tick,( by the way, how can we get that conversion formula for MSExcel?) do we use decimal or actual tick increment for the VPincrement setting, and if so, what would it be.. '.01' , '1.0' ?
Here is what I have so far, any recommendations are greatly appreciated.
============================================
//User Config defaults (most of these can be modified from within the
//eSignal Edit Studies feature)
var VPInterval = 1; //use 1 Minute Bar for Volume accumulation
var VPDays = 1; //Number of days to lookback (Max is probably 10)
var VPIncrement = .01; //smallest increment to record prices (e.g., 0.25 for ES, 0.10 might be right for a stock)
var VPOffset = 0; //Allows you to move back in time (by days) and see what the S/R Landscape looked like
var VPDaysize = 7; //6.5hrs is 9:30-4:00, 6.75hrs is 9:30-4.15; Set this based on your time template.
var VPDispOffset = 0; //bars to shift VP display to the right, if desired.
var VPProject = 0; //project study forward to next day
var VPPivot = 6; //bars on either side to define a peak or trough
var VPDispPrice = 1; //Display actual prices above S/R Lines?
var VPExtendLines = 0; //Extend older lines into current trading day
var VPCum = 1; //Is this a cumulative VP? If so, we print on right side of screen
var VPDetail = 1; //draw the detail price/volume lines?
var VPFractions = 1; //compute in 1/32nds or 1/64ths
var VPWarning = false; //a warning flag we can set if the increment is too low
==============================================
Bill.
1) I have set up a chart template for bond ( US) from 8:00 am to 3:00 pm. but need to have a separate chart time template for ZB. So, since ZB trades from 21:00 hours to 17:00 hours, how is a template set up for that? So far, Charting template does not like that type of hour ( Start/Stop) trading time configuration.
I have noticed that eSignal charting for the actual high/low prices are incorrect for intraday charting if using standard time template. They are correct if set to daily. I believe this is due to the start/stop time for the template, however, so far I have not been able to create a time template for ZB.
2) What would be the VPincrement for bonds? Since eSignal converts the bond price from decimal to tick,( by the way, how can we get that conversion formula for MSExcel?) do we use decimal or actual tick increment for the VPincrement setting, and if so, what would it be.. '.01' , '1.0' ?
Here is what I have so far, any recommendations are greatly appreciated.
============================================
//User Config defaults (most of these can be modified from within the
//eSignal Edit Studies feature)
var VPInterval = 1; //use 1 Minute Bar for Volume accumulation
var VPDays = 1; //Number of days to lookback (Max is probably 10)
var VPIncrement = .01; //smallest increment to record prices (e.g., 0.25 for ES, 0.10 might be right for a stock)
var VPOffset = 0; //Allows you to move back in time (by days) and see what the S/R Landscape looked like
var VPDaysize = 7; //6.5hrs is 9:30-4:00, 6.75hrs is 9:30-4.15; Set this based on your time template.
var VPDispOffset = 0; //bars to shift VP display to the right, if desired.
var VPProject = 0; //project study forward to next day
var VPPivot = 6; //bars on either side to define a peak or trough
var VPDispPrice = 1; //Display actual prices above S/R Lines?
var VPExtendLines = 0; //Extend older lines into current trading day
var VPCum = 1; //Is this a cumulative VP? If so, we print on right side of screen
var VPDetail = 1; //draw the detail price/volume lines?
var VPFractions = 1; //compute in 1/32nds or 1/64ths
var VPWarning = false; //a warning flag we can set if the increment is too low
==============================================
Bill.
Comment