How can I refer to date as argument in f within the foreach loop if date is also used as block element var ? Am I obliged to rename my date var ?
f: func[data [block!] date [date!]][
foreach [date o h l c v] data [
]
]
|
How can I refer to date as argument in f within the foreach loop if date is also used as block element var ? Am I obliged to rename my date var ?
| |||
|
feedback
|
|
A: simple, compose is your best friend.
| |||||
feedback
|
|
You need to either change the parameter name from date or assign it to a local variable. | |||
|
feedback
|
|
You can access the date argument inside the foreach loop by binding the 'date word from the function specification to the data argument:
It makes the code very difficult to read though. I think it would be better to assign the date argument to a local variable inside the function as Graham suggested.
| |||
feedback
|