PureBytes Links
Trading Reference Links
|
Bob
That worked great in the print line
Could you look at the code so far and give me guidance
on how to apply the two functions to value1 so value1 or another
value based on value1 would contain the correct fractions
Thanks
Rick
If time > 0820 and time < 1500 then
Value1 = C of Data2;
If (time > 1500 and time < 2400) or (time > 0000 and time < 0820)
then
Value1 = C of Data3;
Plot1(Value1, "Tbond");
print(IntPortion(value1):3:0,"-",FracPortion(value1)/.03125:2:0);
|