PureBytes Links
Trading Reference Links
|
You can use tabs with Fileappend. Just hit the tab key enclosed in
quotes. Like this (view with a monospace font):
"Date " + NumtoStr(Date,0) + newline;
^
Tab here (no spaces)
or:
NumtoStr(Date,0) + " " + NumtoStr(Close,2) + newline;
^
Tab here (no spaces)
It's a little tricky because you can't tell at a glance in power editor
whether it's a tab or spaces. To tell, when you are editing the code,
you can put the cursor just to the left of the right-hand quote and hit
the backspace key. If all the spaces disappear, it's a tab.
--
Dennis
|